Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-16Cleanup: use fixed indent in PythonCampbell Barton
Reduce right-shift.
2019-03-17Cleanup: unused variablesCampbell Barton
2018-09-10Fix image_utils.py's load_image() helper.Bastien Montagne
2018-07-03Cleanup: pep8Campbell Barton
2016-03-29Fix T47986: OBJ Import fails w/ imagepath encodingCampbell Barton
2016-02-08Fix T47360: Image loading fails when accessible from the CWDCampbell Barton
2016-01-31Cleanup: pep8Campbell Barton
2015-10-05Image Py API: Expose 'load_exists' to RNA image load(), and extend ↵Bastien Montagne
load_image() helper. Expose our `BKE_image_load_exists` feature through an optional parameter to `Image.load()`. Extend `image_utils.load_image()` with two optional parameters, to return existing image datablock if possible, and in that case, to force reloading said image. Needed by incomming 'import images as planes' addon enhancement.
2013-08-15fix [#36455] importing obj data after saving doesn't workCampbell Barton
2013-08-12image_load() utility function's 'recursive' option wasn't functional since 2.4xCampbell Barton
2013-04-05py api additions needed for fixing [#34864].Campbell Barton
- add rna property 'as_bytes' method so you can get a string property as python bytes (bypass encoding). - make bpy.path.abspath/relpath compatible with bytes. - add 'relpath' option to bpy_extras.image_utils.load_image(), so you can load an image relative to a path.
2012-06-20style cleanupCampbell Barton
2012-02-16fix [#30201] bpy_extras.image_utils.load_image always returns placeholderCampbell Barton
in existing addons this only effects OBJ import. interestingly even though this is a bug (in that its returning a placeholder when it should load the image), since the placeholder points to the correct path, the image will load correctly when refreshed, so the bug's not too bad.
2011-12-10fix for error in bpy_extras.image_utils.load_image() when the image file ↵Campbell Barton
exists but cant be read (wrong permissions for eg).
2011-12-10fix for bpy_extras.image_utils.load_image() making a placeholder image when ↵Campbell Barton
passed a path in bytes. made OBJ import fail when the image was missing.
2011-10-17correct spelling errors in commentsCampbell Barton
2011-08-26correct missing bpy doc references.Campbell Barton
2011-07-31py api: sphinx doc corrections, pep8 cleanup and style edits, also added ↵Campbell Barton
__all__ to some modules which were missing it.
2011-07-20added bpy.path.basename because "//" prefix breaks os.path.basename.Campbell Barton
2011-07-10fix for various python bugs and remove unused var.Campbell Barton
2011-06-21pep8 complianceCampbell Barton
2011-05-31fix for mistake in case insensitive image load.Campbell Barton
2011-05-30missed this import when moving load image function.Campbell Barton
2011-05-28move load_image into image_utils and add some docstrings to bpy_extras module.Campbell Barton
2011-05-28- generate sphinx docs for bpy_extras moduleCampbell Barton
- add in support to doc generator for automatically generating docs for submodules.
2011-05-16move generic bpy helper modules into bpy_extras.Campbell Barton