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
2022-10-09Fix T101706: Specify the correct UI location for Images as Planes addonJesse Yurkovich
As part of a change years ago[1], the addon location was moved from the `Add->Mesh` menu to the `Add->Image` menu but the "location" field was never updated. The manual is already correct. [1] 07b8375e76a038a449bff65eb6c27edb7d892c28
2022-09-05Update for "Import Images as Planes" Addon.Rick Astley
Add more features for Material and ImageTexture settings: 1. The ability to change Interpolation Mode of the texture (linear, closest, cubic, smart). Before there was only linear as default. 2. The ability to change the extension parameter. 3. The ability to change a Blend Mode (Blend, Clip, Hashed). Before there was only Blend (or Opaque if "Use Alpha" is unchecked) as default. 4. In "Alpha Blend" case, added the "Show Backface" checkbox. 5. The ability to change the Shadow Mode (Clip, Hashed, Opaque) or disable casting shadows. Before there was only "Alpha Clip" as default. 6. The ability to enable Backface Culling. Reworked: 1. Compositing Nodes, Material Settings and Texture Settings are in different layouts now. 2. "Use Alpha" checkbox has moved from "Texture Setting" to "Material Settings". Differential Revision: https://developer.blender.org/D15744
2022-06-03Cleanup: remove <pep8 compliant> commentCampbell Barton
This is no longer necessary, see: T98554.
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2020-11-30Import images as planes: use Principled BSDF for emission modeDamien Picard
Since Blender 2.91, the Principled BSDF node has an Emission Strength input. It can thus replace the previous setup used to import images as emissive planes. This can improve export compatibility. Reviewed By: Bastien Montagne (mont29) Differential revision: https://developer.blender.org/D9669
2020-10-16update bl_infoCampbell Barton
Correct version number and use doc_url.
2020-09-21Fix T80983: Import Images as Planes links alpha to emission strengthBrecht Van Lommel
This happened after the addition of emission strength, prefer using names over socket index. Based on patch by Evan Wilson. Differential Revision: https://developer.blender.org/D8965
2020-03-06Addons: Use Manual URL prefixAaron Carlisle
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2019-12-12io. more manual linksmeta-androcto
2019-09-11Fix T67239: Import images as planes: Eevee alpha supportDamien Picard
2019-08-29Fix (unreported) ImportImagesAsPlanes: broken alpha handling for ↵Bastien Montagne
shadeless/emit shaders. Recent adding of Principled shader just removed the old alpha handling, but that one is still needed for the otehr shaders...
2019-08-29Principled Node added in Add Images as PlanesBastien Montagne
This is about replacing the Diffuse shader with a principled shader, so that exporting to other formats like OBJ, FBX, GLTF becomes hassle - free as the textures are also imported along with it , as mentioned in the Task [[ https://developer.blender.org/T66299 | T66299 ]] Reviewers: mont29, lichtwerk Reviewed By: mont29 Subscribers: Dok11, lichtwerk Tags: #add-ons Differential Revision: https://developer.blender.org/D5610
2019-06-22Cleanup: redundant set/tuple use for comparisonCampbell Barton
2019-05-20Fix T64853: FBX fail to export after recent changesBrecht Van Lommel
2019-05-20Update for removal of image.use_alphaBrecht Van Lommel
2019-05-17Update for Depsgraph API changesPhilipp Oeser
Reviewers: sergey Differential Revision: https://developer.blender.org/D4883
2019-03-18Fix T62353: Cannot select object when calling Import Images as PlanesPhilipp Oeser
from menu while in Draw Mode
2019-03-01Update for API change: scene.cursor_location -> scene.cursor.locationCampbell Barton
Note that some scripts still used the 3D view cursor which has been removed for a while.
2019-01-30Import Images as Planes: fix error disabling addonPhilipp Oeser
note: the driver setup for corner pin is broken in the new dependency graph (relies on scene camera), will tackle that separately Fixes T60986
2019-01-21Fix calls to object.transform_ apply due to API changesJacques Lucke
The parameter defaults were changed in rB0c829e8240eebd7ce4ed9d61f8682c0d6bf534f4
2019-01-08Fix uses of outdated workbench render engine name.Brecht Van Lommel
2018-12-24Fix/cleanup typos and such in UI messages.Bastien Montagne
2018-12-24Fix/cleanup some UI messages (typos, final points...).Bastien Montagne
2018-12-21Rename user_preferences -> preferencesCampbell Barton
2018-12-19Merge branch 'master' into blender2.8Campbell Barton
2018-12-19Fix invalid string comparisonsCampbell Barton
Identity checks should never be used with strings, it may fail based on Python's interning logic.
2018-11-20Import Images as Planes: raise version number.Bastien Montagne
Please do that *every time* you make any change but most basic cleanup ones!
2018-11-20Import Images as Planes: Menu entry in new Add Image menuJacques Lucke
2018-11-19Fix: icon update for Import Images as PlanesJacques Lucke
2018-11-08Switch support of Import Images as Planes add-on to OFFICIAL.Bastien Montagne
As discussed during bconf, have been maintaing that one for years now, and it's quiet widely used...
2018-11-08Update for changes in Blender's APICampbell Barton
2018-10-19Merge branch 'master' into blender2.8Brecht Van Lommel
2018-10-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3746
2018-09-27Fix T56937: import images as plane error due to removed property.Brecht Van Lommel
2018-09-10ImageAsPlane: Port to 2.8.Bastien Montagne
Not that many issues, mostly matrix/vectors multiplications were a tad tedious... Think everything is working now.
2018-09-10ImageAsPlane: use new py3.7 'field' syntax for operator parameters.Bastien Montagne
2018-09-10Merge branch 'master' into blender2.8Bastien Montagne
2018-09-10ImageAsPlane: Cleanup: compat with 2.8 & props names single/double quotes.Bastien Montagne
2018-09-10Fix import_images_as_planes: remove use_fields option.Bastien Montagne
This has been removed from Blender's Image data...
2018-08-29Python / Cleanup: rename INFO_MT to TOPBAR_MT to reflect actual location.Brecht Van Lommel
2018-04-17A few addons related cleanup after BGE removalDalai Felinto
2017-03-19ImportImageAsPlane: remove usage of register_module.Bastien Montagne
2017-01-15Image as planes: remove 'compat' operator, rename 'new' one to standard name.Bastien Montagne
Add-ons are no API, and are not expected to be used outside of themselves (i.e. add-ons whall not depend on other add-ons). So no reason to keep compatibility with previous behavior of import image a splanes operator (especially since name had to be changed anyway). Also simplified register/unregister code, exceptions are only to be used to detect and handle errors, not to handle some valid cases.
2017-01-15Image as planes: cleanup most obvious issues from rBA5c424d532f3793.Bastien Montagne
- Contexts already return copy of themselves as dict with their copy() method. - Do not store a vector in Enum id to then parse it into real vector, just use sensible enum ids and a mapping to matching vectors... - Since we don't use cutom handling of extensions anymore (did we really want to get rid of this btw? :/ ), at least let's also get rid of hack they needed, and just use standard 'batch' handling of file types. There are probably more to cleanup, also not that happy with some changes here (like the removal of filtering by exact extension/image type), but this will do for now.
2017-01-15import images as planes rewrite: D2239meta-androcto
2016-07-20Fix T48906: Import Images As Planes - does not work with 'unknown' rendering ↵Bastien Montagne
engines. This script has to generate shaders for imported images' planes, so it can only work with known engines. 'Fix' is only adding an explicit error message when an unknown render engine is found, instead of failing silently.
2015-10-15Cleanup: Import Images As Planes: Automatically generate the transparent ↵Philipp Oeser
material nodes system when enabling "Use Alpha", for Cycles. - Removed two options from Cycles Materal settings during import ("Diffuse & Transparent", "Emission & Transparent"). - Nodetree creation stays the same, but transparent BSDF (along the other needed nodes) is now added when Import Option "Use Alpha" is checked. Reviewers: testscreenings, mont29 Reviewed By: mont29 Projects: #addons Differential Revision: https://developer.blender.org/D1437
2015-10-05Fix T46383: "Import Images as Planes" should reload image datablock before ↵Bastien Montagne
importing. There is now an option to force reloading existing images. But main bug was elsewhere - that addon would always create new image datablocks, and yet use same (already existing) texture afterwards, that was rather bad, fixed using new 'check_existing' option of load_image helper just added to master.
2015-06-22Fix (unreported) wrong alignement of planes when importing multiple images ↵Bastien Montagne
at once. Also, name meshes from image names too.