Updating Textures Globally

I was wondering if this is even possible so I can save headaches trying to script it. Not that I have much knowledge but I need something to update the textures automatically or on-demand by clicking a button.


import bpy


for image in bpy.data.images:
    image.reload()

Oh man. How simple! Thank you so much. :slight_smile: