Joilnen Leite
2a72eb8c28
Fixing make files compilation in linux
2010-08-11 14:51:52 +00:00
Campbell Barton
e588e8e741
bugfix [ #23257 ] cmake tests for SSE, but SSE2 gets enabled
...
patch from Vinay Pawar, some minor changes by me.
2010-08-11 08:23:48 +00:00
Campbell Barton
d739a1788d
small edits to text editor from writing a python editor extension.
...
- rename TextLine.line -> body, ConsoleLine.line -> body
- minor speedups when setting the body text, also re-allocate console lines if they are < half the length.
- added option to highlight current line in the text editor.
2010-08-11 05:21:43 +00:00
Campbell Barton
8c39326962
bugfix [ #23247 ] Load Image in Textures does not use a usefull path
2010-08-11 03:31:56 +00:00
Matt Ebb
c4f1c0fda1
Fix silly bug with color ramp ui where there was an extra pixel
...
of background on the right side
2010-08-11 02:31:54 +00:00
Campbell Barton
4ed342567e
correction for mis-named DupliObject.object_matrix -> matrix_original
2010-08-11 02:13:34 +00:00
Guillermo S. Romero
95aa8cfa4a
Update address in license block.
2010-08-10 21:22:26 +00:00
Guillermo S. Romero
e87552d3e8
SVN maintenance.
2010-08-10 20:33:15 +00:00
Campbell Barton
7c0216c7a0
minor adjustments to python scripts to make them easier to run outside of blender.
2010-08-10 18:21:33 +00:00
Campbell Barton
76b17eaac5
repr() functions for the python api, this means it can print 'bpy.data.objects[foo].modifiers' from the objects modifiers, uses the same function thats used to make the animation path.
2010-08-10 15:46:16 +00:00
Campbell Barton
ad4fc20ec9
moved idcode functions into their own file (was added as a todo in the comments), these were mixed in with file reading code - BLO_readfile.h bot these functions are not spesific to reading.
2010-08-10 15:14:19 +00:00
Daniel Genrich
f483834f13
Smoke:
...
- Fixing UI glitch so that range and UI range now matches
- Increased max to 400 secs (at 25 FPS) to allow more artistic freedom
2010-08-10 13:06:45 +00:00
Sergey Sharybin
c0e39df6ac
- Enable shape key switching in edit mode for curves, surfaces and latticies
...
- Disable changing of lattice size if there are shape keys
2010-08-10 06:36:42 +00:00
Campbell Barton
41531e4fb6
include rna parent class names in renaming list
2010-08-10 06:27:29 +00:00
Campbell Barton
15669532a2
header re-shuffle, some headers contained unneeded refereces to other headers, better include inline with the C files that need them
2010-08-10 05:41:51 +00:00
Matt Ebb
b525dfb298
Added additional (optional) subframe argument to RNA API function: scene.set_frame()
...
This is used to set the current frame to a floating point subframe state between 0.0 and 1.0
added to the integer frame. A main usage for this is retrieving geometry at sub-frame
intervals for use in multi-segment motion blur:
http://mke3.net/projects/3Delight_blender/renders/multisegment_blur.mov
Example:
scene.set_frame(5)
or
scene.set_frame(5, 0.25)
2010-08-10 03:28:06 +00:00
Martin Poirier
0d9898ac73
rewrite poll methods using a base class implementation instead of a global function (now that this is possible because of it being a class method)
2010-08-10 02:58:32 +00:00
Dalai Felinto
73f1d88be2
Bugfix for:[23234] Blender File Browser - Back Button does work with first directory entered?
...
For !WIN32 systems the fix was in ED_fileselect_set_params
(basically adding the first folder in the sfile->folders_prev list)
For WIN32:
I talked with Nathan (Jesterking) and he agreed that the fix in path_util.c was required too. Without that BLI_path_abs was always making WIN32 paths ending with \ to end with \\
(e.g. C:\Blender\ --> C:\Blender\\)
And this was making the folder to fail ISDIR tests.
2010-08-09 22:54:40 +00:00
Guillermo S. Romero
825f0593e0
SVN maintenance.
2010-08-09 20:14:33 +00:00
Arystanbek Dyussenov
f9acf1b455
Fix bug #22828 , "Exporting as COLLADA crashes Blender".
2010-08-09 18:15:50 +00:00
Thomas Dinges
acfead3d15
OBJ Export:
...
* Removed duplicate use_animation variable, sorry!
* Added some descriptions.
2010-08-09 10:52:20 +00:00
Thomas Dinges
8600f5f29a
OBJ Export:
...
* Script was broken, fixed.
* Started some code cleanup, mainly variable names.
* Tabs > Spaces
2010-08-09 10:35:03 +00:00
Campbell Barton
a8ce419257
rna refactoring update, order by class, attribute.
2010-08-09 10:22:09 +00:00
Campbell Barton
c026b8066d
fix from recent poll() edits.
2010-08-09 08:18:49 +00:00
Campbell Barton
66cbb0d973
restrict prefix checking to booleans for now
2010-08-09 07:05:37 +00:00
Campbell Barton
8d517cff33
rna refactor...
...
- added a script to merge 2 lists of rna renaming from/to
- merged rna_booleans.txt into rna_properties.txt
- made rna_cleaner.py sort by class.from by default.
2010-08-09 06:55:20 +00:00
Campbell Barton
9581cf1bdd
python draw callback
...
- optional argument for the drawing mode crashed when not set
- added a check for the call fuinction being callable
- added a check for the argument being a typle.
2010-08-09 02:29:06 +00:00
Campbell Barton
a6f13f9d7b
poll() as a python '@staticmethod' was too limiting and didnt allow useful base class poll functions in many cases.
...
now rna functions that dont have a 'self' are automatically assumed '@classmethods'.
de-duplicated poll functions and made some minor tweaks too.
2010-08-09 01:37:09 +00:00
Campbell Barton
7fcbbad5a4
remove py2.x compat check for class registration.
2010-08-08 23:46:49 +00:00
Campbell Barton
1bda960348
[ #23228 ] Play rendered animation is not working
...
own recent commit missed renaming expand -> abspath
2010-08-08 22:49:46 +00:00
Peter Schlaile
a773d8836f
Bugfix: [ #23149 ] Showing cache instead of rendering with the VSE
2010-08-08 16:47:58 +00:00
Luca Bonavita
9fe2b252c4
== docs ==
...
Changing " **type** " into "\n\n:type: " in Mathutils, to have like "type: float" in its own line.
2010-08-08 16:22:29 +00:00
Peter Schlaile
f46a649965
This fixes:
...
[#20884 ] SEQUENCER EFFECT: Animating Speed Control Opacity has no effect
[#21308 ] SEQUENCER EFFECT: Glow ignores Opacity setting
2010-08-08 14:21:20 +00:00
Peter Schlaile
0c54337755
== Sequencer ==
...
This fixes: [#23184 ] Problems with speed control effect strip in the
video sequence editor
Also: got rid of tstripdata caches in DNA.
Fixes some potential crashes in SEQ_IMAGE rendering (s_elem wasn't
checked for NULL).
2010-08-08 13:55:30 +00:00
Campbell Barton
015c23b86d
display addons sorted by category then name (remove old commented code which loaded the modules for real)
2010-08-08 13:45:16 +00:00
Campbell Barton
9db1f87531
remove unused includes
2010-08-08 13:11:13 +00:00
Campbell Barton
5c75d6fa98
remove unused includes
2010-08-08 13:06:31 +00:00
Campbell Barton
3e58edda3a
remove unused includes
2010-08-08 13:03:07 +00:00
Campbell Barton
8c455e1da8
remove unused includes
2010-08-08 08:33:47 +00:00
Campbell Barton
f2d77e4496
remove unused includes from editors/space_*
2010-08-08 08:14:07 +00:00
Luca Bonavita
9566b031a3
== docs ==
...
Added some docs mainly in bpy.types.UILayout.html, descriptions by Florian Meyer (testscreenings), thanks.
2010-08-07 18:34:16 +00:00
Campbell Barton
057aac553b
Experemental XML UI, define panels/menus/headers which load at startup like python scripts.
...
- 2 panels implimented in properties_render_test.xml (Render Dimensions and Stamp)
- only enabled in debug mode.
- poll() functions are not supported yet.
- as stated above experemental, we'll see if this is at all useful, remove if not.
- XML could be replaced with JSON or YAML.
2010-08-07 16:21:15 +00:00
Joshua Leung
2b3c8bdc27
Bugfix #23216 : Memory leak when removing Fcurve from action
...
Missing call to free_fcurve()
2010-08-07 10:18:59 +00:00
Campbell Barton
c688dc05ca
bugfix [ #23211 ] "with" keyword in text editor not highlighted [Patch attatched
...
by Justin Dailey (dail) with minor edit
2010-08-07 02:13:39 +00:00
Martin Poirier
9f0232766c
netrender: fix poll methods
2010-08-06 22:24:33 +00:00
Tom Musgrove
dc3c979ac8
after discussion with brecht reverting this commit, will pass on feedback to the patch author
2010-08-06 18:40:05 +00:00
Brecht Van Lommel
8c40bda539
Fix #23210 : displace modifier strength only had 2 decimal places,
...
was inconsistent.
2010-08-06 18:14:52 +00:00
Brecht Van Lommel
fe0a7ea7a5
Fix #23208 : REGION_DRAW_POST_PIXEL callbacks only work in 3d view and
...
image editor, but there's no reason they wouldn't work in all regions,
so moved the function call.
2010-08-06 18:11:49 +00:00
Brecht Van Lommel
7b6e895c11
Fix #23209 : there was no access yet to region data from RNA, there's no
...
generic system for it yet, but for now already return it for the 3D view
since that is the only space that uses it.
2010-08-06 17:54:02 +00:00
Tom Musgrove
8c80f623f4
Committing Konrads GLSL preview of bumpmapping, now we no longer have the bizarre situation of being able to view the changes of the normal map but not of regular bump mapping
2010-08-06 17:42:47 +00:00