Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-17implementation of adding spirals (add_curve_spirals) in edit modeSpivak Vladimir (cwolf3d)
2019-02-15Initial port Spacebar menu addon: T60493meta-androcto
2019-02-14glTF exporter: Auto limit and normalize skin weightsJulien Duroure
2019-02-14glTF exporter: correctly convert UV texture transformsJulien Duroure
2019-02-13mesh_snap_utilities_line: Fix attempt to make line in object out of edit modemano-wii
2019-02-13Updated Blender ID add-on from upstreamSybren A. Stüvel
2019-02-13Show which Blender ID instance is communicated with in the addon prefsSybren A. Stüvel
This is only shown if it was overridden by setting the BLENDER_ID_ENDPOINT environment variable. It makes Cloud development a bit easier when it's explicit to which Blender ID (local dev or real one) we're talking.
2019-02-12Fix T54719: Letter 'S' with different meaning in different context cannot be ↵Bastien Montagne
used in a multi-lingual environment. Do not use single letters in labels, ever. Unless they are totally accepted and common in that sense (rgb, hsv, xyz).
2019-02-11mesh_snap_utilities_line: Fix ghost objectsmano-wii
2019-02-11mesh_snap_utilitie_line: Don't always pass the active object mesh as the ↵mano-wii
main mesh.
2019-02-11mesh_snap_utilities_line: New solution for creating framebuffer out of the ↵mano-wii
right rendering context The way was to delay the initialization of the framebuffer for the test_select method. (This rendering context issue gives a lot of headache)!
2019-02-11mesh_snap_utilities_line: dereference global snap_contextmano-wii
Missed in the last commit
2019-02-11mesh_snap_utilities_line: Fix framebuffer being created and cleaned in the ↵mano-wii
wrong context The solution is somewhat hackistic because it requires the creation of a global framebuffer at the time the addon is registered
2019-02-10glTF importer: add documentation class for displaying in tooltip popupJulien Duroure
2019-02-10mesh_snap_utilities_line: Cleanupmano-wii
Rename files, and split the `common_classes.py` file into `drawing_utilities.py`, `navigation_ops.py` and `widgets.py`
2019-02-09mesh_snap_utilities_line: Fix attempt failed to get the original empty datamano-wii
2019-02-08mesh_snap_utilities_line: Use depsgraph API to evaluate updatesmano-wii
And cleanup.
2019-02-09glTF exporter: Disable armature modifier when applying modifiers and ↵Julien Duroure
exporting skins
2019-02-09glTF: tweak some ops descriptionsJulien Duroure
2019-02-08glTF: Adding 'export/import' in operator label. It makes ops more easily ↵Julien Duroure
foundable by search F3
2019-02-08Is key Free: added missing text keyword argumentsNBurn
2019-02-07Cleanup OBJ debug prints from recent own commit.Bastien Montagne
Thanks to @BzztPloink for the headup.
2019-02-07glTF importer: Fix vertex color importJulien Duroure
glTF stores vertexcolor data in linear, blender in sRGB
2019-02-07Fix T61254: Import OBJ error:Bastien Montagne
We cannot clear a face's vnors/uvs indices in case none are defined in the OBJ file, we need indices for all loops when defining them in Blender's mesh...
2019-02-07Fix T61275: recognize values with decimal separator in svg importerJacques Lucke
2019-02-06glTF: documentation url update to official blender docJulien Duroure
2019-02-06Fix T60845: Export OBJ: error exporting as obj when file contains collection ↵Bastien Montagne
instances. Looks like that was skipped somehow when OBJ IO was ported to 2.8...
2019-02-06mesh_snap_utilities: Intersect property removed by accidentmano-wii
2019-02-06Update for removal of dupliframes and slow parent.Brecht Van Lommel
2019-02-06Cleanup/fix T61233: FBX export error if action key exist.Bastien Montagne
Please do basic grep on whole source repo (including add-ons & co) when removing RNA property (or any other change affecting the API)...
2019-02-06glTF exporter: fix exceptions on exporting lightsJulien Duroure
2019-02-06mesh_snap_utilties_line: Add Gizmos supportmano-wii
2019-02-06mesh_snap_utilities_line: Fix error message if object has no facemano-wii
2019-02-06mesh_snap_utilities_line: Fix failed object detection in orthographic viewmano-wii
2019-02-05correct Object Scatter panel bl_idnameJacques Lucke
2019-02-05fix Object Scatter addon in background modeJacques Lucke
2019-02-05Add descriptions to properties in Object Scatter addonJacques Lucke
2019-02-05Don't split groups by default when importing .obj filesJacques Lucke
As discussed in D4303.
2019-02-05Fix T61179: Import OBJ groups bug.Bastien Montagne
Regression/side effect from rBA9448cef00d1b3, while we do want to get one Blender object per 'o' line (object declaration) in OBJ file, we do want to 'reuse' same objects when same OBJ groups ('g' lines) are used inside of a same object, in case we split OBJ groups into objects... Thanks to Jacques Lucke (@JacquesLucke) for initial investigation.
2019-02-05glTF importer: New attempt to fix antipodal quaternion issueJulien Duroure
2019-02-05glTF importer: Make FCurve group names consistent with BlenderJulien Duroure
2019-02-05Separated geodesic_domes from add_mesh_extra_objectsSpivak Vladimir (cwolf3d)
2019-02-03Added (in add_curve_simple) a type of curve creation.Spivak Vladimir (cwolf3d)
Implemented the ability to add curves (add_curve_aceous_galore) in edit mode.
2019-02-01glTF importer: Fix some antipodal issue in bone rotationJulien Duroure
2019-02-01glTF importer: Fix alpha usage in unlit materialJulien Duroure
Using emission node + is camera ray
2019-02-01Fix T61096: fbx import crashes on file from mixamo.Bastien Montagne
Blender only supports 8 UVMaps per mesh, avoid crashing addon when trying to import more.
2019-02-01SVG: Properly handle values in exponential notationSergey Sharybin
Some SVG exporters outputs small values in an exponential notation. There is no big reason to reject those files. This change makes it so any notation of the value is accepted. Only do it in the path point parsing, since other areas are already dealing with this correct. Also covered the array parsing covered with a unit test which can be run as a stand-alone application. The parsing code is from Jacques Lucke, thanks! Differential Revision: https://developer.blender.org/D4234
2019-02-01mesh_f2: quad from edge fails (with Adjust UV option)Philipp Oeser
This only happened when no UV for a loop could be found (no adjacent face) Fixes T61019, T60191
2019-02-01Change category into 3DView.Kalle-Samuli Riihikoski
2019-02-01fixes returning errors badly @Jimmy Hazevoet (jimmyhaze)Spivak Vladimir (cwolf3d)