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
2021-01-13fix attempt for conversion of multiple FM objects to keyframed shard objectsfracture_modifierMartin Felke
2019-09-06potential fix for incorrect external mode custom rotations after loadingMartin Felke
2019-06-17disabled offset based fallback in rotation calculationMartin Felke
it caused unwanted sudden rotation changes
2019-06-17only write rotation data to mesh if particle rotation was enabledMartin Felke
2019-06-17fix for rotation calculation in anim bindMartin Felke
2019-06-15fix attempt for binding to particlesMartin Felke
2019-03-13deform mblur fix FMMartin Felke
call for precalcing velocities was not always reached (only for autohide enabled)
2019-02-03partial fix for wrong rotation when converting to keyframesMartin Felke
forgot to initialize ob->quat for passive objects, they are most likely in euler rotation mode still and the ob->quat seems not automatically in sync
2019-01-25expose rigidbody apply_force and apply_torque to python via rna functionMartin Felke
2019-01-16crash fix for using Final Solid if derivedFinal is NULLMartin Felke
was missing a nullpointer check, fallback is to return a DM of the basemesh
2019-01-11pull animated bind update calls out of loopMartin Felke
the function does a loop on its own (over meshislands in fm)
2019-01-10fix attempt for previous rotation fix with bound objectsMartin Felke
2019-01-10fix for bound object lagging behind one frameMartin Felke
2019-01-09hopefully proper rotation fix for animated mesh bindMartin Felke
2018-12-03backport of master fix for https://developer.blender.org/T56969Martin Felke
allows to let the branch run with python 3.7 too
2018-12-02transform fix for external centroid-based constraintsMartin Felke
2018-12-02small fix for minimum mass and UI float display precision changesMartin Felke
testing now against being smaller than minimum mass 0.001 and setting it to 0.001 instead of testing against 0 (useless with float) adapted displayed UI precision with breaking threshold, cluster breaking threshold, breaking distance and cluster breaking distance.
2018-11-10fixes for dynamic fractureMartin Felke
fixes for: - speed transfer (shards could stop their motion) - shards could be stuck in the air - ghost dynamic triggers work now too (firing a contact callback)
2018-10-31disabled a verbose print when using many objectsMartin Felke
2018-10-01fix for autohide with fractal (could leave holes near inner edges before); ↵Martin Felke
fractal/fast bisect should now also take extra objects / helper better into account
2018-09-09do not show dump writing routine in dump any moreMartin Felke
did also use exception handler and manually set up signals
2018-09-08very simple confirm dialog whether to send crash minidump or not, with xmessageMartin Felke
2018-09-08backported existing crashpad support (win, mac, needs testing) and added ↵Martin Felke
breakpad support (linux)
2018-09-05constraint UI label / tooltip clarificationsMartin Felke
now having Search Method, Search Limit as labels, tooltips explain that this is related to shards as well
2018-09-02let neighbor shards now only be stopped if propagate trigger is enabledMartin Felke
2018-08-12added autohide filtering based on filter object vertex positionsMartin Felke
mesh objects now use their verts and a distance, while empties (or other non-mesh objects) still use the maximum of the object size as radius
2018-08-11re-enabled deform mblur for FM, and hopefully fixed related crashesMartin Felke
2018-08-10disable deform mblur in FM for now (precalced velocities)Martin Felke
it caused crashes at baking and rendering, as well as on saving and loading. Needs to be re-implemented differently without customdata, rather let cycles read the rigidbody data directly via FM.
2018-08-03allow grid spacing > 1Martin Felke
2018-08-02use voro particle order now correctly, fixes brick fracture problems.Martin Felke
2018-07-29fix for ghost trigger (again)Martin Felke
2018-07-29execute operator warns now if current frame is not on cache startframeMartin Felke
2018-07-28restore ghost stop trigger functionalityMartin Felke
2018-07-27attempt to fix incorrect (bbox) triggering behaviorMartin Felke
2018-06-25do not set edges of selected faces to sharp in external modeMartin Felke
because in most cases only existing objects are packed into the FM mesh, and no fracturing happens, where you want to set fracture edges to sharp.
2018-06-23enable angular limit/stiffness/damping settings for plastic constraintsMartin Felke
in fact, only forgot to uncomment
2018-05-24added ghost stop triggersMartin Felke
stopped shards also will get their constraints disabled and still attached partners will be stopped too
2018-05-02missed in last commit: rise BM_OMPLIMIT to avoid overheads with small datasetsJens Verwiebe
2018-05-02fix a clang warning, fix an improper initialisation for gcc, remove ↵Jens Verwiebe
nonfunctional omp, rise BM_OMPLIMIT to avoid overheads with small datasets
2018-04-25crash fix for changing shardcount and refracture when doing automergeMartin Felke
forgot to refresh the merge data before merging, after refracturing
2018-04-25added isIntact() query to regular rigidbody constraints, tooMartin Felke
2018-04-17immediately take constraint limit changes into account during rigidbody ↵Martin Felke
simulation
2018-04-15fix for setting lower x linear limitMartin Felke
2018-04-14Merge remote-tracking branch 'refs/remotes/origin/blender-v2.79b-release' ↵Martin Felke
into fracture_modifier
2018-03-22Fix compilation errorSergey Sharybin
Recent fix was assuming some cleanup is done.
2018-03-22Fix T54234, add BLENDER_VERSION_CHAR to .plistArto Kitula
2018-03-22Fixed: cache clearing when using multiple Alembic files.Sybren A. Stüvel
2018-03-22Fix T54348: Bone dissolve gives invalid hierarchyCampbell Barton
Disconnected bones weren't handled correctly.
2018-03-22Fix bone dissolve using wrong envelope radiusCampbell Barton
Also correctly copy bone tip selection when dissolving.
2018-03-19Fix T53478, T53430: Sequencer cut edge case failsCampbell Barton
Previous fix for T53430 caused T54200. The edge case for soft & hard cuts weren't working, where the strip used start/end-still & the frame was placed exactly on the start/end of of the sequence content. T54200 fixed the end-still case but broke hard-cuts for all other cases. This fixes the case for soft/hard cuts with/without start/end-still.