Controls work well , the edges too ( were somewhat failing me at the beginning ) but now it happens that when I run the game While not in the parts inside the Grid The spawner in your script says “missing object”
but if I put the pieces within the limits of the grid , the part that generates colque and spawner interact with controls and sometimes overlap ! D:
Just a random guess,
Maybe you have assigned those groups from scene Hierarchy (and they got destroyed),
should assign them form Prefabs (project) folder, into those spawner fields…
Eureka!
if it worked prefab linking a group spawner . but now shows me several Recent Messages in red on the console. Furthermore , it appears that the pieces do not fit together as if they pass near each other not even reach the floor
The tutorial has some issues, like not testing if it’s actually looking inside the array. Find the line it’s complaining about by double-clicking the error in the console, and wrap it in a check for the height. It’ll probably require something like:
if(v.y < h)
{
// Check the grid here
}
I’m not sure about the placement issue. It looks like you’re either putting down the block groups off by 0.5, or have shifted the borders by 0.5. Stick a few Debug.Log() calls here and there to verify that you actually use non-fractional positioning (as the tutorial is designed to do).