dbc9e36f72
make python3.3 compatible, __class__ is no longer in the class methods namespace.
2011-07-11 05:50:49 +00:00
301e5b4ea0
fix for various python bugs and remove unused var.
2011-07-10 17:26:15 +00:00
b62a956cc8
cleanup for python scripts - unused vars and imports
2011-07-10 12:51:37 +00:00
22bb09d018
fix for error when moving module, broke fracture tools and select internal face operator.
2011-07-03 04:28:41 +00:00
2c66ab12e9
minor pep8 edits
2011-07-01 12:33:34 +00:00
093af18bfd
fix for own error in script edits, broke bpy_extras.mesh_utils.ngon_tesselate
2011-06-30 16:06:30 +00:00
8f89e7a309
incorrectly had CMake storing directory names as filepaths
...
also correct compiler warning for collada and remove print from own last commit.
2011-06-29 13:16:11 +00:00
d86d68d4e6
console autocomp import now excludes '_' prefixed variables and the results are sorted.
2011-06-29 10:47:43 +00:00
c19d2d2da2
bug [ #27779 ] Python console completion broken
...
modified auto-completion, though this may need to become a preference.
The problem is:
- including _all_ text as a prefix can take a lot of space, and isnt too readable.
- including only the previous word is error prone because detecting delimiters can fail when editing strings.
so I've set it to only include the last part of the string but align to the cursor to make it more readable.
2011-06-29 06:06:59 +00:00
eaae38551f
pep8 compliance
2011-06-21 17:17:51 +00:00
2d01cb5b27
fix for error caused with module relocation - broke loading ngons in OBJ files
2011-06-18 11:40:44 +00:00
7cbc4c0dd7
IDProperty python module update
...
- add support for IDProp array slicing, but not resizing.
- rename array attribute type to typecode and use chars 'f', 'd', 'i' which match pythons array module. (was using int's which only have a meaning internally).
- rename function 'convert_to_pyobject' to 'to_dict' and 'to_list' for IDProp group and array types respectively.
- remove 'len' array attribute, calling len(array) is fine.
2011-06-17 05:45:46 +00:00
62ba2d4c68
Changes to quick explode
...
- fix python error when the object had an empty material slot
- initialize start frame from the current frame
- set frame range to 300000 max (which is blenders own maximum)
- mesh order was arbitrary, instead use selected -> active, removed invert option.
also fix for missing include in bpy_extras.view3d_utils
2011-06-15 00:16:30 +00:00
90d8fcb522
improved autocompleation when there is a common prefix
2011-06-11 17:03:26 +00:00
9cf0bbb95c
added a check to console auto-compleation for pythons struct_seq type, so bpy.app and sys.float_info autocompleate their attributes rather then bring treated as a typle.
2011-06-10 09:44:27 +00:00
1f56eee953
fix [ #27495 ] Incorrect result of image name autocompletion
2011-06-10 07:22:35 +00:00
dd0522242a
addons now show expanded list again (since Brecht's commit now makes it fast)
...
also add utility function for getting cleaned, unique names from python: bpy_extras.io_utils.unique_name(...)
2011-06-02 15:21:47 +00:00
f51c9fa496
fix for mistake in case insensitive image load.
2011-05-31 09:55:50 +00:00
c141ed0aa9
missed this import when moving load image function.
2011-05-30 12:19:30 +00:00
a9dd90be78
move load_image into image_utils and add some docstrings to bpy_extras module.
2011-05-28 09:34:45 +00:00
ecf2d1ff4e
- generate sphinx docs for bpy_extras module
...
- add in support to doc generator for automatically generating docs for submodules.
2011-05-28 07:47:58 +00:00
26252bb315
correct spelling error and some pep8 changes.
2011-05-26 09:33:51 +00:00
6466673a62
move less common mesh operations out of bpy_types into bpy_extras.mesh_utils
2011-05-26 07:16:56 +00:00
6a4a8854b5
lookup table for axis conversion was wrong in some places.
2011-05-24 12:55:29 +00:00
4a989282d4
bpy_extras.io_utils.axis_conversion() was returning wrong matrix.
2011-05-24 08:11:51 +00:00
4916c44af8
simplify window_to_3d_vector() and call it from viewline()
...
also update python view function to match.
2011-05-20 10:28:40 +00:00
c672b3fb67
[ #27439 ] Console window doesn't hide on startup when presets are used (Windows)
...
only print preset load messages in when debug is enabled.
2011-05-20 00:21:38 +00:00
b181368f52
SVN maintenance.
2011-05-19 20:22:35 +00:00
863b60e1b8
fix [ #27432 ] [2.57/scripts/modules/bpy/path.py:169] can't concat bytes to str
2011-05-19 06:27:39 +00:00
32793a1395
add python access to mathutils.intersect_line_plane, update view3d_utils module to use it.
2011-05-19 04:28:09 +00:00
0c41635f85
fix for python module region_2d_to_vector_3d and region_2d_to_location_3d functions in ortho mode.
2011-05-18 15:57:20 +00:00
68dbfe6ac9
move generic bpy helper modules into bpy_extras.
2011-05-16 07:51:02 +00:00
6c8317ae8f
new empty package to move bpy utility modules into.
2011-05-16 07:48:43 +00:00
2f08309ffe
window_to_3d_vector was incorrect but dolly view operator was accounting for it. fixed so result isnt negated and mouse coords dont need to be adjusted.
2011-05-12 06:52:24 +00:00
a131ce066a
python utility module for converting between 2d/3d region/world coordinates.
2011-05-12 06:32:21 +00:00
b432520799
fix [ #27324 ] WindowManager.invoke_search_popup() crashes blender and does not work
...
also minor formatting fixes.
2011-05-08 12:51:05 +00:00
e239085f70
io_utils.axis_conversion(...) utility function to easily convert the forward & up axis between different apps on import/export.
2011-05-07 11:25:59 +00:00
e26b0c68a4
patch [ #27205 ] Infinite recursion inside resolve_ncase() when passed a driver letter on Windows that does not exist
...
by Brandon Ehle (azverkan)
2011-05-06 11:27:04 +00:00
5a0dca41e5
fix 2 bugs with addon installation
...
- installing an addon which creates a new script directory didn't add this to the sys.path.
- installing the addon was meant to set the search string to the addon name but was broken.
2011-05-04 08:44:08 +00:00
d8eafe14c6
fix [ #27148 ] *Invalid Path* in all "operator presets" dropdowns
2011-05-02 17:29:30 +00:00
f02b9b37f2
api to support different kinds of relative paths on export, including copying the files to a subdir.
2011-04-14 08:47:47 +00:00
ba03e5023e
less alarming warnings about the python api not being stable in online docs and remove from interactive console.
2011-04-12 12:09:38 +00:00
f8c09b37d4
api changes needed for for copying old settings to new.
...
- py: bpy.utils.resource_path('USER', 2, 56)
- C: BLI_get_folder_version(id, major, minor, check);
2011-04-11 13:56:58 +00:00
d5d9c56cb5
minor edits to keyingsets script.
2011-04-05 12:31:55 +00:00
b2753f6af9
"Bugfix" (i.e. feature request in disguise!) [ #26772 ] Delta Scaling,
...
Rotation and Location don't have Keying Sets
Added Keying Sets for Delta Loc/Rot/Scale settings (aka dLoc/dRot).
These settings could already be found in the Object properties, under
the collapsed "Delta Transforms" panel.
I've added these to the end of the Keying Sets list, since adding any
earlier will end up breaking active Keying Set setting in older files.
Besides, these settings aren't that frequently used either...
2011-04-05 11:49:58 +00:00
65b13c8089
fix [ #26757 ] Python console: help() doesn't work anymore
...
also quiet some warnings & add docstrings to bpy module which was shaowing the GPL header in its help() message.
2011-04-03 23:11:00 +00:00
c8652b301f
pep8 checker, mostly pedantic style changes but also found an error in mesh_utils.mesh_linked_faces()
2011-04-01 02:41:15 +00:00
6e5ce953da
use 'is None' rather then '== None' as suggested by python docs & mis-spelling.
2011-03-29 04:16:55 +00:00
3598882f0e
Proper traceback when addons fails AST parsing setp
2011-03-27 20:52:50 +00:00
50a06eccff
pep8 cleanup
2011-03-27 05:23:14 +00:00