Which is optimal?

Which would be smarter to do?

Drawing multiple 2x1 rectangles in a for loop and making them a physics body

or…

Creating multiple 2x1 images in a for loop and making them a physics body

The images are going to allocate more memory and will take longer to process since they have to be read from the file system, though it won’t be much.

Rob

The images are going to allocate more memory and will take longer to process since they have to be read from the file system, though it won’t be much.

Rob