I use a for loop to iterate through my bpy.data HUD objects, and it just crashes. How do I prevent crashes and still get my objects?
do not use iteration in a loop through bpy.data - for such iteration there is a regular loop for game objects - for i in scenes[‘Scene_HUD’].objects: if “prop” in i: # do something with these objects or iterate further