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
2008-04-10Fix for bug #8898: QMC AO not working correct on objects pointingBrecht Van Lommel
directly at the camera in some cases.
2008-04-10Point Cache RefactoringBrecht Van Lommel
======================= Caching and Baking: - The point cache is now cleared on DAG_object_flush_update(), and not cleared for time dependency graph updates. - There is now a Bake button instead of Protect. Also cache start and end frames were added to softbody and particles. - The cloth autoprotect feature was removed. - The Ctrl+B menu now also bakes cloth and particles next to softbody and fluids. Additionally there are now frree bake and free cache menu entries. - The point cache api has been changed. There is now a PTCacheID struct for each point cache type that can be filled and then used to call the point cache functions. - PointCache struct was added to DNA and is automatically allocated for each physics type. - Soft body now supports Bake Editing just like cloth. - Tried to make the systems deal consistently with time ipo's and offsets. Still not sure it all works correct, but too complicated to solve completely now. Library Linking: - Added some more warnings to prevent editing settings on library linked objects. - Linked objects now read from the cache located next to the original library file, and never write to it. This restores old behavior for softbodies. For local simulation the mesh and not the object should be linked. - Dupligroups and proxies can't create local point caches at the moment, how to implement that I'm not sure. We probably need a proxy point cache for that to work (ugh). Physics UI: - Renamed deflection panel to collision for consistency and reorganized the buttons. Also removed some softbody collision buttons from the softbody panel that were duplicated in this panel for cloth. - Tweaked field panel buttons to not jump around when changing options. - Tabbing e.g. Soft Body Collision into the Soft Body panel, it now only shows Collision to make the panel names readable. - I tried to make enabled/disabling physics more consistent, since all three system did things different. Now the two modifier buttons to enable the modifier for the viewport and rendering are also duplicated in the physics panels. Toggling the Soft Body and Cloth buttons now both remove their modifiers. - Fixed modifier error drawing glitch. Particles: - Particles are now recalculated more often than before. Previously it did partial updates based on the changes, but that doesn't work well with DAG_object_flush_update() .. - Fixed memory leak loading keyed particle system. Now keys are not written to file anymore but always created after loading. - Make particle threads work with autothreads. Continue Physics: - The timeline play now has a Continue Physics option in the playback menu, which keeps the simulations going without writing them to the cache. - This doesn't always work that well, some changes are not immediately updated, but this can be improved later. Still it's fun to get a feel for the physics. Todo: - Point cache can get out of sync with and undo and changing a file without saving it. - Change the point cache file format to store a version (so old point cache files can be either converted or at least ignored), and to do correct endian conversion. - Menu item and/or buttons for Ctrl+B. - A system("rm ..") was changed to remove() since the former is very slow for clearing point caches. These system() calls were already giving trouble in a bug in the tracker, but really most use of this system("") should be changed and tested. - The Soft Body Collision and Clot Collision panel titles don't mention there's point cache settings there too, doing that makes them unreadable with the default panel setup.. but may need to make the names longer anyway.
2008-04-10Fix for render scemode in the python api, forgot to commit this fileBrecht Van Lommel
when i changed it from a short to an int.
2008-04-09Cloth bugfix for new timescaling featureDaniel Genrich
2008-04-09Bugfix: scaling images anti-aliased with either the width or heightBrecht Van Lommel
staying the same did not work correct (showed up in the sequencer).
2008-04-09Cloth enhancement for upcomming cache changes: support different speed using ↵Daniel Genrich
clmd->sim_parms->timescale
2008-04-09Made aspx/y into floats so we can render precise regions (for apricot ↵Campbell Barton
terrain baking)
2008-04-09Cloth/Collision modifier now gets add to the tail of the modifier stack as ↵Daniel Genrich
that is normal behaviour for all other modifiers, too.
2008-04-09Action Editor - Renamed 'AfterTrans Delete Dupli-Frames' to 'AutoMerge Keys' forJoshua Leung
2008-04-09API Doc for new Object attributes trackAxis and upAxis.Stephen Swaney
contributed by Cedric Paille. Thanks! Fix broken indentation in Constraint doc.
2008-04-08fix compiler warnings - deja vu all over again.Stephen Swaney
buttons_object.c:2326: warning: too many arguments for format buttonns_object.c:3829: warning: ordered comparison of pointer with integer zero
2008-04-08Optimization for the sequencer wipe effect, was doing a lot of unnecessaryBrecht Van Lommel
computations for each pixel making it quite slow.
2008-04-08setting the blend value for a sequencer strip would crash when the strip had ↵Campbell Barton
both char and float buffers.
2008-04-08Proper fix for camera transform with snap.Martin Poirier
Please email me or report a bug when such problem arise, it's simpler if done properly the first time.
2008-04-08Sorry, reverting bad things in modifier.cDaniel Genrich
2008-04-08Cloth bugfix: used old dm instead of new created result derivedmesh; Code ↵Daniel Genrich
cleanup + deactivation of unsued selfcollision code in kdop.c + little speedup there
2008-04-08moving the camera on the local Z axis while in the camera view didn't work ↵Campbell Barton
when snapping was enabled (even though the CTRL key was not pressed)
2008-04-08bug fix Jens Ole Wund
UI panel issues with soft bodies code cleaning .. remove some G.rt code
2008-04-07Fix for bug #8073: texture nodes connected to a viewer could crash.Brecht Van Lommel
Also fixed a bug where procedural buffers did not convert correctly to different buffer types (e.g. value -> rgba would give red).
2008-04-07Doh! Typo - replace [Y] with [Z].Stephen Swaney
2008-04-07added an optional arg for object.getBoundBox(worldspace) - so you can get ↵Campbell Barton
localspace boundboxes, this is useful when getting a dipli's boundbox where the objects worldspace matrix has no useful meaning.
2008-04-07annoyance with python api, Blender.Library.Datablocks should always return ↵Campbell Barton
an empty list, rather then None when there is no datablocks.
2008-04-07Silly copypaste mistake. Thanks for noticing!Janne Karhu
2008-04-07fix for [#6342] Collada 1.4 import (of perhaps corrupt collada files) leads ↵Campbell Barton
to a complete crash of Blender 2.43 under Windows XP NMesh wasnt checking 16max material limit, also made collada import work with the user scripts dir.
2008-04-06reversing 14289, it included Ton's homedir as a default path and disabled ↵Campbell Barton
scriptlinks by default
2008-04-06Commit patch #8799: Realtime SetParent function in the BGEBenoit Bolsee
This patch consists in new KX_GameObject::SetParent() and KX_GameObject::RemoveParent() functions to create and destroy parent relation during game. These functions are accessible through python and through a new actuator KX_ParentActuator. Function documentation in PyDoc. The object keeps its orientation, position and scale when it is parented but will further rotate, move and scale with its parent from that point on. When the parent relation is broken, the object keeps the orientation, position and scale it had at that time. The function has no effect if any of the X/Y/Z scale of the object or its new parent are below Epsilon.
2008-04-06fix compiler warnings.Stephen Swaney
I'm not sure about the intent for this one: warning: too many arguments for format: sprintf(md->name, "FluidParticleSystem", BLI_countlist(&ob->particlesystem)); Something for Janne ?
2008-04-06Patch #8740: enable negative axis radar sensorBenoit Bolsee
2008-04-06Python API - read access to Track and Up axis attributes for Object.Stephen Swaney
Part of Patch 8557. Contributed by Cedric Paille. Thanks! Still waiting for API doc for new attributes. Finger is poised over Revert button...
2008-04-06bug fix soft body can resume with point cache Jens Ole Wund
sneak in .. springs preload
2008-04-05fix compiler warning: comparison between signed and unsignedStephen Swaney
2008-04-05PyAPI - setting a buttons string value crashed. suspect this is a 64bit ↵Campbell Barton
problem since replacing the string length of int, with Py_ssize_t or long prevented the crash. worked around the problem by removing the PyString_AsStringAndSize command. wizard_curve2tree - removing id properties didnt work. exit button used a callback it didnt need to.
2008-04-05No need for unions in transform code.Martin Poirier
Unneeded size optimisation. There's much better way to tackle this if it really is a problem.
2008-04-04fix own bug with scripts drawing, could crash when a script failedCampbell Barton
2008-04-04selecting a new scripts dir didnt rebuild the menu'sCampbell Barton
2008-04-04wire was being drawn for solid curve objects in editmode when it should not ↵Campbell Barton
have been.
2008-04-04moved some duplicate lines into their own functionCampbell Barton
2008-04-04Restore bezier handles to their original flag if the transform is canceled, ↵Campbell Barton
for IPO's and curve edit mode. Also retopo was running of curve transform was canceled.
2008-04-04Fix for bug #8870: crash converting curve to mesh. The object was beingBrecht Van Lommel
used for curve deform, but after conversion wasn't a curve anymore, and there was no check for this.
2008-04-03Bugfix: crash with strand surface AAO and layer ipo's.Brecht Van Lommel
2008-04-03Fix for bug: [#8610] Hair Particle 'cut' edit mode not respecting backface ↵Janne Karhu
culling / z-depth -Cut-brush didn't use depth testing at all, now it does, but unfortunately this changes the behavior of the brush so that cutting is not perfect for hairs that are partly visible from behind an edge of the emitter (this change effects the brush only when z-buf clipping is used of course)
2008-04-03Fix for bug: [#8576] Heir always in the backJanne Karhu
2008-04-03Fix to make grass render the same on solaris as linux, by doingBrecht Van Lommel
pointer comparisons in qsort. This works for glibc according to the documentation, and appears to work on solaris too.
2008-04-02Fix for bug: [#8117] Particles with fluid brokenJanne Karhu
-Handling of fluid particles was not coded at all -Now things should work properly, but as fluid particles are not very familiar to me I'd appreciate some thorough testing
2008-04-02removed printfCampbell Barton
2008-04-02Sculpts calc_area_normal() could result in a zero length vector if all faces ↵Campbell Barton
were pointing away from the view. deal with this by making 2 average vectors, one for front pointing faces, and another for back pointing faces, also removed an unneeded acos().
2008-04-02This commit reverts the #include <mesa/glu.h>Kent Mein
stuff used for peach to the standard <GL/glu.h> the mesa stuff was needed for the machines for peach but its not the stanard location of the headers, now that its not needed were switching it back. Kent
2008-04-02dpx saving would fail if there was no float buffer, which is a problem when ↵Campbell Barton
rendering from the sequencer because a float buffer can be generated for some frames but not others depending on their contents.
2008-04-02Small last-minute peach feature: loading an image into the image nodeBrecht Van Lommel
now automatically detects if a sequence of images is selected, and sets the frames and image type to sequence.
2008-04-02Whitespace commit for editarmature.c while I try to find the cause of some ↵Joshua Leung
bugs here.