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
2009-08-25svn merge -r 22628:22753 ↵volume25Matt Ebb
https://svn.blender.org/svnroot/bf-blender/branches/blender2.5/blender
2009-08-252.5 - Assorted Bugfixes for Animation EditingJoshua Leung
* Inserting keyframes now takes into account whether the F-Curve was editable or not. * Editing keyframes in animation editors now sends proper depsgraph updates instead of just tagging the relevant objects. Thanks JiriH for reporting these bugs.
2009-08-25Reverted some keymap changes.William Reynish
Moving to standards for opening/saving etc was causing uproar in IRC.
2009-08-25Smoke:Daniel Genrich
*enable non-2^n textrues for all gfx cards which support it. * try to enhance the visual quality under linux a bit when gfx card doesn't support it (still errors visible)
2009-08-25Smoke:Daniel Genrich
*fixing the fix as usual
2009-08-25Smoke:Daniel Genrich
* Bugfix for scaling on non-2^n-textures
2009-08-24Correct transform descriptions.Martin Poirier
Some operations were described as vertex only when they aren't.
2009-08-24* r22739 broke compilation with scons. Make sure WITH_OPENEXR definition is ↵Nathan Letwory
given
2009-08-24[#19232] (2.5) Correction of cmake for windows about audio (jack and openal)Campbell Barton
from Guillaume Lecocq (lguillaume) [#19247] (2.5) useless WITH_OPENEXR redefinition from Mauro Toffanin (equilibrium)
2009-08-24patch from Ron Walker (o6a).Campbell Barton
Descriptions for TFM, TEXT, CONSOLE and ED operators. - Made some minor edits.
2009-08-24* Fix for camera+internal surface object inside ztransp volumeMatt Ebb
2009-08-242.5 - Sliders in Animation EditorsJoshua Leung
The 'Show Sliders' option for DopeSheet and Graph Editors now works again. When this option is enabled (it is disabled by default), a slider (or combobox) is shown beside the mute/lock toggles for F-Curves. Editing the slider will result in a new keyframe being added on the current frame. So, for all the (ex)-Maya animators out there, you can now animate in a channelbox-like way. :) Also in this commit: * Fixed some warnings in modifier.c from previous commits there * Fixed some refresh problems with DopeSheet channel list (which were only obvious after adding back the sliders) * Removed the old/unrestored and nasty slider code used in the past by the Action Editor only.
2009-08-24Made menu text more consistent, using '...' when a menu item spawns a popup ↵William Reynish
or confirmation, and removing redundant starting words in submenus. Also added notifiers for user prefs, and tweaked wave modifier layout.
2009-08-24Adjusted spacing of header items. William Reynish
Made toggle buttons less wide, with less extra space around them Made number widgets wider to allow larger numbers, such as the current frame field in the timeline.
2009-08-24* Fix for volume materials + AAOMatt Ebb
2009-08-242.5 3DView:Thomas Dinges
Patch by Lorenzo Pierfederici (lento). Many thanks! * Ported some more menus to python (Pose, Particle...) * Some cleanup and reorganization in the python file to reduce code. :) * Cleanup of old C buttons code.
2009-08-24* Fix for rendering wire materialsMatt Ebb
2009-08-24UIWilliam Reynish
Changed the rounding of action buttons. The round style looked pleasing when they were isolated, viewed by themselves, but looked terrible when grouped, or at small sizes with icons as it was often used. The old Filebrowse or Render This Window buttons were examples of how badly they looked with an icon, and the rounding in the tools area made for some weird visual shapes. When combined in groups of widgets, such as the datablock selectors it looked even weirder, because one side of the group would be square and the other would be round, causing some spatial clashes. http://www.reynish.com/files/blender25/actionbuttons_new.png Also tweaked the tools sub-area color which stood out as being much brighter than the rest of the UI. When the tools area was open in the default layout, the overall impression was asymmetrical, non-harmonic.
2009-08-232.5/Sculpt:Nicholas Bishop
* Deleted unused file
2009-08-23* Compile fix after merge - disabled high-res smoke rendering in voxeldata ↵Matt Ebb
texture. Will re-enable when the modifier situation has been worked out.
2009-08-232.5 - Custom Shape and Bone Groups can be viewed/set on Bones again.Joshua Leung
2009-08-23svn merge https://svn.blender.org/svnroot/bf-blender/trunk/blender -r22704:22717Campbell Barton
2009-08-23spacebar for the search menu was overriding space in the text editorCampbell Barton
2009-08-23Option for MouseFocus sensor. only used when 'Mouse over any' type is set.Campbell Barton
Previously the only way to detect if the mouse moved over a different object was to enable true-level-triggering and have a python script detect the change. When the Pulse option is set, focusing on a different object pulses true. Python attribute is focusSensor.usePulseFocus. This is similar to the collision sensors pulse option where changes in the set of collision objects generates an event too. Found this functionality missing when trying to make a logic demo that used mouse-over with overlapping objects.
2009-08-23svn merge -r 22628:22714 ↵Matt Ebb
https://svn.blender.org/svnroot/bf-blender/branches/blender2.5/blender
2009-08-23* enable ztransp transparency type for new materials by default.Matt Ebb
2009-08-23* Volume rendering - z transparencyMatt Ebb
This solves one of the last remaining hurdles for volume rendering. Previously it always used ray tracing to shade other objects inside or behind the volume. This meant that said objects would look aliased, unless you used Full OSA on the volume (which is slow!). As well as this, it meant that you didn't get a good alpha channel out of the volume to use for compositing, similar to ray refracting materials. This commit enables z transparency for volume materials. Although it can be potentially less physically correct, in most situations there's no difference, and you get the benefit of nice sampling for other objects and an alpha channel for compositing too.
2009-08-222.5: Python subclasses can now define RNA properties by makingBrecht Van Lommel
a __props__ list in the class, same as for operators.
2009-08-22[#19229] 1 line fix resolves - segmentation FaultCampbell Barton
from Martin Frances (martinfrances) Added a scene check when appending objects so you can append data without a scene.
2009-08-22bpy's __rna__ attribute doesnt work as it should, since the parent classes ↵Campbell Barton
__rna__ overrides the subtypes. For now have pyrna_struct_as_srna look in the dict first for __rna__ before using PyDict_GetItemString. Somehow __rna__ is not calling the pyrna_struct_getattro function, python find it first. The only relyable way to get the rna from python currently is. bpy.types.SomeType.__dict__['__rna__']
2009-08-22Bugfixing.Joerg Mueller
2009-08-22svn merge https://svn.blender.org/svnroot/bf-blender/trunk/blender -r22668:22701Campbell Barton
2009-08-22Added extra padding for OS X at the top of the screen when opening user ↵William Reynish
prefs. The window header was still getting clipped slightly behind the menu bar.
2009-08-22Hook Modifier Bugfixes:Joshua Leung
Fixed some typos made in previous commit. Hook Modifier should now work correctly again (and also for newly added Hook relationships) Notes: * To add a hook, you currently need to perform the following steps 1) add modifier from menu (no operator in EditMode) 2) specify the object (and/or bone to use as the hook target) 3a) in EditMode, select the vertices you wish to be affected by the hook, and press 'Assign' 3b) alternatively, fill in the vertex-group field for the Vertex Group which contains the vertices to be affected 4) press 'Reset' (to make sure hook will behave correctly) 5) optionally, also press 'Recenter' if the hook position isn't right... * BUG ALERT (Brecht/Ton): it is impossible to clear the vertexgroup/bone fields once you have assigned some value. Doing backspace+enter (or any other variation) will always result in the first item in the search menu being used.
2009-08-222.5 - Timeline now updates correctly after keyframes have been editedJoshua Leung
2009-08-222.5 - Code shufflingJoshua Leung
Moved WeightPaint/VertexPaint toggling hotkeys to the same place that the ones for PoseMode/EditMode are defined. This means that the hotkey for toggling PoseMode works again (instead of being overwritten by WeightPaint).
2009-08-222.5/Vertex paint:Nicholas Bishop
* Added operator for filling vertex colors with the brush color * Pythonized the vertex paint menu
2009-08-222.5/Multires:Nicholas Bishop
* Disabled multires subdivide button in editmode (again) SVN weirdness: I already did this in r22447. Somehow it got changed back -- but I can't find any log of it getting reverted, either in my email or on p.b.o. This is extremely weird!
2009-08-22Added standard hotkeys for standard features like copying, cutting, pasting, ↵William Reynish
saving, loading. Saving/Loading: Save - Ctrl S / Cmd S Save As - Ctrl+Shift S / Cmd+Shift S Open - Ctrl O / Cmd O Open Recent - Ctrl+Shift O / Cmd+Shift O New File - Ctrl N / Cmd N Text: Copy- Ctrl+C / Cmd+C Cut- Ctrl+C / Cmd+C Paste- Ctrl+V / Cmd+V Select text- Ctrl+A / Cmd+A Misc: Repeat Last Op - Ctrl+R / Cmd+R Render - Ctrl+Return / Cmd+Return Render Animation- Shift+Ctrl+Return / Shift+Cmd+Return User Preferences - Ctrl+Comma / Cmd+Comma Changed the important search menu to Space key. Old hotkeys are still preserved, at least for now.
2009-08-212.5 Multires:Nicholas Bishop
* Fixed doing a simple subdivide, rather than Catmull-Clark. Note that the first subdivision will still appear to be CC rather than simple, this is a bug we just have to live with for now.
2009-08-212.5/Multires:Nicholas Bishop
* Fixed multires subdivision of a sculpted object. Accidentally broke this when I fixed removing a multires modifier.
2009-08-212.5 Object mode:Nicholas Bishop
* Made object mode an enum, shows better in the debugger * Added a toggle mode to the set object mode operator * Toggling a mode on and off goes back to the previous mode, not just object mode * Changed the vertex mode and weight mode shortcuts to call the toggle mode operator
2009-08-212.5: Animation playback without sync option was slightly slowerBrecht Van Lommel
than expected time, even when it could keep up. Changed the WM timer logic a bit to always target the next frame time exactly,
2009-08-212.5: Load UI is now an operator property, and a user preference toBrecht Van Lommel
define what the default is, just like file compression for saving.
2009-08-212.5: layout.itemO now returns OperatorProperties to be filled in,Brecht Van Lommel
when passing properties=True as argument. Other changes: * uiItemR, uiItemFullR, uiItemFullO now accept a flag argument rather than multiple different "boolean" arguments, but still exposed as booleans to python. * Fix RNA to support setting PROP_RNAPTR for return values.
2009-08-21bug fix #18982Jens Ole Wund
non mesh objects missing initializers
2009-08-21Ack... committed wrong file before (fortunately it was just a harmless ↵Joshua Leung
comment added)
2009-08-212.5 - 2 BugfixesJoshua Leung
* Alt-S in Object Mode would crash. Was caused by modal-keymaps for Pose Mode not being cleared when not in Pose Mode. Also fixed what appears to have been a copy+paste error for Armature Sketching keymaps. * Active KeyingSet menu in TimeLine header is now properly editable. Was using the wrong type of layout call to do this.
2009-08-21Hook Modifier - Bone TargetsJoshua Leung
Made Hook Modifier be able to use bone targets. However, I haven't been able to verify that everything will work perfectly, since just creating a new Hook Modifier and assigning targets doesn't set hmd->indexar correctly.
2009-08-21have texture paint use the curve rather then the falloff setting (falloff ↵Campbell Barton
gave ugly center area of 100% opacity)