Changeset View
Changeset View
Standalone View
Standalone View
io_scene_obj/import_obj.py
| Context not available. | |||||
| # Absolute path - c:\.. etc would work here | # Absolute path - c:\.. etc would work here | ||||
| image = context_imagepath_map.get(imagepath, ...) | image = context_imagepath_map.get(imagepath, ...) | ||||
| if image == ...: | if image is ...: | ||||
| image = context_imagepath_map[imagepath] = \ | image = context_imagepath_map[imagepath] = \ | ||||
| obj_image_load(imagepath, DIR, use_image_search, relpath) | obj_image_load(imagepath, DIR, use_image_search, relpath) | ||||
| Context not available. | |||||