QtQuick's createObject function says that if you use property lists, it's more efficient than setting properties after it's created for a lot of properties, which might be the case but it seems to take longer for my code to run and doesn't support setting up signals with the connect() thing since it needs to be able to use "whatever dot connect" and it can't use the dot. If it could, I could switch to incubateObject.

#QtQuick #Qt

Figured out that for my needs, I can "just" not use signal connections and call functions directly (for tile clicking, it needs "parent.tileClicked" in the tile). Incubation for objects doesn't quite work well since the layout gets all messed up after moving a tile. Haven't changed to no signals yet.