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
path: root/source
AgeCommit message (Collapse)Author
2010-04-13Fix for including docstrings of static methods.Tamito Kajiyama
2010-04-13BGE: stubs update (bplayer)Dalai Felinto
2010-04-13[#21993] Edge Slide operator should disable projection snappingMartin Poirier
Adding proper flag. If there are others like that, other people can fix them too, it's easy peasy.
2010-04-13modifier include cleanup, this might need fixes on other systems but hard to ↵Campbell Barton
avoid. also removed unused stuff from cmake modifier file
2010-04-12Button panels need to get handlers and keymaps... but for now sneakedTon Roosendaal
in a handy key : Akey in buttons window on a panel will open or close it.
2010-04-12Subframe calculations for particles, original patch by Raul Fernandez HernandezJanne Karhu
* Increasing subframe count increases stability for SPH fluid and Newtonian particles * Also small tweaks into physics ui panel to better fit new subframes value * This commit also fixes the moving fluid emitter problem as described by Raul in the mailinglist
2010-04-12Rearrange the includes a bit.Guillermo S. Romero
2010-04-12Merge -c 28147 from COLLADA branch into trunk.Arystanbek Dyussenov
2010-04-12Fix [#21953] Texture space size seems not updated constantlyMatt Ebb
2010-04-12BGE: TexFace panel (from patch #21780 from Mitchell Stokes + some changes)Dalai Felinto
the patch exposes a rna property to get the active edit mode face. This is a hack. However it's a small patch (a.k.a. easy to revert later if needed). The official plan is to wait for BMesh before tackling it properly. Nevertheless TexFace panel is really important for BGE. Missing: operators to copy the current parameters to other selected faces. * note: what I changed from the original patch is the UI script. The pool wasn't defined and it was using tabs.
2010-04-12Work around to keep compiler going with zlib.h:Guillermo S. Romero
In file included from MOD_fluidsim_util.c:62: /usr/include/zlib.h:1440: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘gzseek64’ TODO: string.h appears twice and "" vs <> seems arbitrary.
2010-04-12Fix [#21972] Inclusive selection doesn't work for FacesMatt Ebb
2010-04-12Fix many compile errors in fluidsim modifier.Matt Ebb
Please enable+compile before committing!
2010-04-12Modifiers moved, adjust accordingly.Guillermo S. Romero
2010-04-12more header cleanupsCampbell Barton
2010-04-12Fix [#21982] Operator bug: Edit modeMatt Ebb
Hid the 'Enter Edit Mode' property when adding an object, not necessary anyway.
2010-04-12- use more inline math funcitons where possibleCampbell Barton
- swapped in less verbose math functons - modifier include cleanup
2010-04-12Patch from Xavier Thomas, tweaks/fixes to FFMPEG YUV conversion codeMatt Ebb
2010-04-12SVN maintenance.Guillermo S. Romero
2010-04-12booleanops.c was moved to MOD_boolean_util.c, remove empty file.Campbell Barton
2010-04-12[#14437] Modifier Stack RefactorCampbell Barton
patch by Ben Batt (artificer) Updated patch for 6 or so modifiers added since the patch was written. - tested with CMake and SCons - fixed one error were flags were being added to the fluids type. - remove BKE_simple_deform.h, simple_deform.c, move functions into MOD_simpledeform.c since there were problems with circular deps. - moved some fluid and boolean functions used by modifiers too.
2010-04-12Copy Constraints OperatorDalai Felinto
the C code to copy the constraint was already there (same as 2.49) so this operator simply exposes it. I'm using the name Copy Constraints to Others based on what we have in material operators (e.g. Copy Material to Others). If we bring back the whole Copy Attributes menu (old Ctrl+C) having the individual operators is still important for scripts. Nevertheless I'm not comfortable with the name (to Others sounds unnecessary verbose) but so far having the functionality back is important (request from Caju Studio). I'll be glad to make any change later if needed. (no shortcut for that, to use it go to userpref->keymap and assign a shortcut for this operator or add it to the toolshelf)
2010-04-11== Sequencer ==Peter Schlaile
Made custom proxy files a lot more sensible to select (upgraded to filepath get/setters) Changed semantics, since custom files don't make much sense without custom directories...
2010-04-11== Sequencer ==Peter Schlaile
Proxy render size settings is now back. (Maybe still in need of some sensible icons, though...) Also: waveform color seperation works in N-keys dialog again.
2010-04-11SVN maintenance.Guillermo S. Romero
2010-04-11Specific operator for Push/Pull (no need to go through the generic operator ↵Martin Poirier
and it makes it available in the operator search)
2010-04-11PyAPICampbell Barton
- added new mathutils.Color() type, use with rna so we can do for eg: material.diffuse_color.r = 1.0 # also has hsv access material.diffuse_color.s = 0.6 - made Mathutils and Geometry module names lowercase.
2010-04-11py api file renameCampbell Barton
- prefix mathutils api. - 2 blf.c files (annoying for debugging) - py api docs ignore keying sets as with operators.
2010-04-11Long outstanding panel feature: press ENTER with mouse on header willTon Roosendaal
open/close it. Will allow quicker inspections without mouse strains.
2010-04-11Zoom in/out for Composite Node backdrop is (temp?) Vkey and SHIFT+V.Ton Roosendaal
Scrollwheel is being fully swallowed there now...
2010-04-11python function to remove drivers.Campbell Barton
eg: bpy.context.object.driver_remove("location") ANIM_remove_driver now accepts -1 as an index for removing all drivers from one path.
2010-04-11BGE fix #20456 - 2.5: mouse position problem (offseted by 1 vertically)Dalai Felinto
In Blender 2.49 the win width and height were been calculated including an extra pixel (e.g. a fullscreen editor would be (width + 1) by (height + 1) ) In opposite to that, Blender 2.5 window/editor code were fixed to have the exact width,height size. So although the BGE canvas code was still the same as 2.49 it was producing a wrong result. I'm also adding some commentaries in the setViewport code. BGE is setting the viewports 1 pixel larger. the setViewport command is been used as if one should pass (minx, miny, width, height), while it should be (minx, miny, maxx, maxy). I will take care of that later, if any one has extra comments on that, please let me know.
2010-04-11Solidify ModifierCampbell Barton
- vertex normals were not being flipped (though faces are) - rim faces didnt influence edge vertex normals apply solidify on top of solidify modifier now works correctly
2010-04-10bpy.app was writing members more then once.Campbell Barton
2010-04-10rna/py/reference doc improvements..Campbell Barton
- vectors now respect min/max settings. - keyframing and adding drivers raises an error in an index is set on a non array, keyframing raises an error if it fails. reference docs... - added docstrings for remaining python bpy_struct functions - added fake class for docs, bpy_struct, which is the base class of everything in bpy.types - improved inherictance references for struct classes, include bpy_struct members.
2010-04-10Removed duplicated definitions of verticesBegin(), verticesEnd(),Tamito Kajiyama
pointsBegin(), and pointsEnd(). All these methods are inherited from the Interface1D class.
2010-04-10QTKit (OSX 64bit): Add audio export to QuicktimeDamien Plisson
Supports default OSX codecs : Linear PCM, Apple Lossless and AAC Note that AAC codec doesn't support sample rates above 48kHz. If a python/rna guru knows how to easily enforce this limit, he is welcome! Enjoy making Quicktime movies now with audio!
2010-04-10rna reference docs, list inherited properties and functions at the bottom of ↵Campbell Barton
each type.
2010-04-09Reversion of commit that changes order for keymaps. I thought itTon Roosendaal
would work for all cases, but greasepencil broke! Needs to get a bit more thinking or design.
2010-04-09Fix for previous commit - better to just use NewRender rather than GetRenderMatt Ebb
2010-04-09Fix [#21529] Operator.report() has inconsistent behaviour with newlinesMatt Ebb
2010-04-09Attempted fix for [#21491] rendering from the api does not workMatt Ebb
Render was hanging on to old callbacks from interactive wmJob render when used as a blocking render from py API.
2010-04-09Fix [#21949] View center seg faultMatt Ebb
Operator needed a better poll function
2010-04-09Patch from Xavier Thomas: Use vertex arrays for drawing image editor vector ↵Matt Ebb
scope too, making it a lot more efficient. Also fixed issue with scopes height not being stored in file properly.
2010-04-09Bugfix: 21586 - UI problems with Tiled Textures (animatable for GE)Dalai Felinto
The problem was present in Blender 2.49, but it didn't produce any side effect. glScale was changing the texture matrix and the matrix was never been reset. That messes up with UI drawing.
2010-04-08three things:Ton Roosendaal
- ALT+Scrollwheel zooms backdrop in node editor - Blender -d debug print will also print every event except mouse moves (needed to debug WM, some events are catched by OS) - Changed order of keymaps... the default maps now are evaluated *after* the own custom maps, so you can make overrides or defaults.
2010-04-08no functional changeCampbell Barton
- convert solidify edge crease values into chars once rather then for each edge. - sort vertex was checking the array all the time when it wasnt needed.
2010-04-08bugfix [#21812] Crash with -b -P on blend files saved with older blender ↵Campbell Barton
versions. from Elia Sarti
2010-04-08Bringing back code style to how WM was made.Ton Roosendaal
Check this diff to see difference... mixed styles in 1 file are not OK!
2010-04-08Merge -c 28089 from COLLADA branch into trunk.Arystanbek Dyussenov