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
2014-07-19CMake FindOpenEXR.cmake was using OPENEXR_VERSION unsetCampbell Barton
2014-07-19Fix T40658: UV map node not working for GLSL materials.Brecht Van Lommel
2014-07-19Fix T41100: draw other object UVs doesn't work when both objects have no image.Brecht Van Lommel
2014-07-19Editmesh: Add options for selecting manifoldCampbell Barton
Manifold was defined as any edges not using 2 faces, however its useful to have some options here. You can now select between Wire/Boundary/Multi-Face/Non-Contiguous/Verts Note the Non-Contiguous option is new, it selects edges between faces pointing in different directions.
2014-07-19Cleanup: test namingCampbell Barton
2014-07-19Cleanup: Use more logically constructed ELEM macrosCampbell Barton
- name primary comparison var 'v' - names remain same when expanded - no odd mixing of macros, use prev ELEM + extra arg - use 16, even if not used yet, saves adding more in future
2014-07-19Fix T41010: MetaBall Duplivert Unwanted Movement Bug.Bastien Montagne
BKE_scene_base_iter_next() was completely messing poor dupli objects' matrices... Note this func should be reworked, but as stated in comments, it should not exist at all, DAG should be used here, so until we have new shinny one we can live with this. Also, mballs do not behave correctly when used as duplis (org object remains visible/rendered, unlike any other object type). This will be fixed in a separate patch/commit, since it proved to be rather tricky to handle.
2014-07-19MBall cleanup: remove unused F_ERROR references, als fix/enhance ↵Bastien Montagne
BKE_mball_basis_find() BKE_mball_basis_find() was making a bunch of string manipulations for all MBall objects (including duplis), and then making a (broken!) check to do nothing in case of duplis mball! Now it makes correct check in early stage.
2014-07-19Fix RGN_DRAW_REFRESH_UI flag being overwrittenCampbell Barton
2014-07-19Cleanup: warningCampbell Barton
2014-07-18Cleanup in MBALL/displist: no need to create curvecache for non-basis ↵Bastien Montagne
mballs, will never be used anyway!
2014-07-18Cleanup: curvecaches for curves, not mballs!Bastien Montagne
2014-07-18Fix T41109: Reloading image that has been modified outside Blender does not ↵Sergey Sharybin
update image in Image Texture nodes
2014-07-18Fix T41114: Particle systems cause memory corruption due to invalidLukas Tönne
dmcache index (again).
2014-07-18Fix T41081: Presets not working on pinned properties panels.Lukas Tönne
Preset operators should avoid using `bpy.context.object.data` as a base path to properties. This path is not available in the buttons context when using pinned datablocks! Instead use the specific `bpy.context.camera` and `bpy.context.lamp.sky` paths now, which lead to the correct datablocks in any case.
2014-07-18Fix T41035: Scale Manipulator CTRL-ALT-S issue with maya shortcutsSergey Sharybin
2014-07-18Fix wrong interface flags combination in inverse kinematics panelSergey Sharybin
2014-07-18Fix T41039: Hook modifier sometimes fails to retain correct bezier curve ↵Sergey Sharybin
point assignment
2014-07-18Fix wrong index update when removing CV pointsSergey Sharybin
2014-07-18BGE: Add property/material detection and X-Ray for mouse over any sensorMitchell Stokes
This patch adds a Property/Material detection and a X-Ray mode to the mouse over any sensor like on the ray sensor. Proposal: http://blenderartists.org/forum/showthread.php?261847-BGE-proposal-Mouse-Over-Any-sensor-with-Property-and-X-Ray&highlight=proposal Reviewers: moguri Reviewed By: moguri Differential Revision: https://developer.blender.org/D653
2014-07-18BGE: Add missing documentation and attribute constraint_type for ↵HG1
ConstraintWrapper 1. Add attribute to get the constraint type. 2. Add missing documentation for getParent, setParam, constraint_id in bge.types.KX_ConstraintWrapper.rst. 3. Add missing documentation for GENERIC_6DOF_CONSTRAINT and flag bit in bge.constraints.rst. 4. Fix typo in CcdPhysicsEnvironment.cpp Reviewers: moguri Reviewed By: moguri Differential Revision: https://developer.blender.org/D654
2014-07-18BGE: Add level mode to property actuatorHG1
This patch adds to the existing property actuator a level mode, which is switching the property depending on the input level. Reviewers: moguri Reviewed By: moguri Differential Revision: https://developer.blender.org/D652
2014-07-18Code cleanupCampbell Barton
2014-07-18Fix -1 passed as boolCampbell Barton
2014-07-18Fix a BI bug: when an object had dupliobjects children, it was never ↵Bastien Montagne
rendered at all, even if having particle systems. This was not matching behavior of Cycles and 3DView!
2014-07-18Fix T41113: Hide doesn't work on particle systemsBastien Montagne
Particles could completely cancel Hide flag! 'Accumulative' bool is not a really good idea here, hide (or render-hide) are some kind of 'absolute' no-go. Found another issue in that area, duplicated objects would still show in 'render override' mode, when object was render-disabled. Hopefully things are better now.
2014-07-17Add helper to validate (and fix) material indices of meshes' polygons, ↵Bastien Montagne
curves' splines and texts' letters. Useful especially for importer addons. Reviewers: campbellbarton Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D650
2014-07-17Bake-API: progress (bar) workingDalai Felinto
Note: This makes no change to the user, the render engine (Cycles) still need to update the progress during baking. But this is the Blender side of this.
2014-07-17BGE: rtsp support for VideoTexture (video streaming)Dalai Felinto
In collaboration with Benoit Bolsee (mainly doing it under his directions). Note: FFmpeg lib needs to be compiled with rtsp support for this to work. Bug 1/2 of T41004
2014-07-17Fix T34664: bevel face material can be set in tool and modifier.Howard Trickey
Now the bevel tool, modifier, and internal operator have a material slot # parameter that the user can set. If left at default of -1, behavior is as current -- bevel face material is taken from the closest original face (this may be ambiguous). If material slot is >= 0, it gives the material slot index number for the material to use.
2014-07-17Use compiler attributes for more BLI libsCampbell Barton
2014-07-17Fix for bmesh_vert_separate adding to visithash multiple timesCampbell Barton
2014-07-17Correct error in recelty added BM_face_split_edgenetCampbell Barton
Was copying UV's to unrelated faces
2014-07-17Correct previous commit - space crept in patchCampbell Barton
2014-07-17Add thousands separators to scene stats (D646)Campbell Barton
by januz with own modifications
2014-07-17bmesh py api: add bmesh.utils.vert_splice(...)Campbell Barton
2014-07-17bmesh py api: BPY_BM_CHECK_SOURCE_* macro now accepts multiple argsCampbell Barton
2014-07-17Follow-up to code cleanup in rB415af0b: Keep compound terms as they are.Tamito Kajiyama
2014-07-17Cleanup: dead codeCampbell Barton
2014-07-17BMesh: use compiler attributes for queries, structureCampbell Barton
2014-07-17BMesh: Add BM_vert_pair_share_face_checkCampbell Barton
Use to assert if BM_vert_splice is used incorrectly
2014-07-17Cleanup / Cycles: Remove unused defines and some other minor changes.Thomas Dinges
2014-07-16Fix T41075: Segfault when attempting to escape from bone translation.Bastien Montagne
Minor logical error in rBb617d6d5 ;)
2014-07-16Clean up of dead code.Bastien Montagne
dm can’t be NULL here (found by Coverity).
2014-07-16Automatic commit by arcgaiaclary
2014-07-16Sort vertex groups by Armature Hierarchygaiaclary
Sort vertex groups by Armature Hierarchy Reviewers: mont29 Differential Revision: https://developer.blender.org/D649
2014-07-16Fix T41088: Canceling pose library preview does not reset to previous pose.Bastien Montagne
2014-07-16BMesh: optimize BM_vert_splice to avoid getting a loop array firstCampbell Barton
2014-07-16Cleanup: Adhere to our naming convention for BKE_linestyle.h APICampbell Barton
2014-07-16Renamed CTX_data_linestyle_from_scene() to BKE_get_linestyle_from_scene().Tamito Kajiyama
The function is to retrieve the active line style ID datablock from a scene and there is nothing related to bContext.