Bug Report
The sprite list insert method does not load the textures for the sprite, and so the sprite is not visible when using this method to add a sprite to the list.
Actual behavior:
A sprite inserted into the list is not visible.
Expected behavior:
The sprite should be visible, the same as when the append method is used.
Steps to reproduce/example code:
self.sprite_list.insert(index,sprite)
self.sprite_list.append(sprite) # Hack to get the insert operation to work
self.sprite_list.remove(sprite) #
self.sprite_list.insert(index,sprite)
Bug Report
The sprite list insert method does not load the textures for the sprite, and so the sprite is not visible when using this method to add a sprite to the list.
Actual behavior:
A sprite inserted into the list is not visible.
Expected behavior:
The sprite should be visible, the same as when the append method is used.
Steps to reproduce/example code: