List of addons that work with 2.8

Great, thanks @anon72338821

Any addon which can export as .EPS. So that i can import in Illustrator or Coreldraw software as vector .Any suggestion or help. Thanks

Added paid addon: Batch Operations. (Mind it’s not an asset manager, but data manager of blend-file internal, not extern). See First post for complete list of addons

GoZ for Blender add-on has also been updated for 2.8, yay! :+1:

2 Likes

Added SmartF addon made by Duyun Ivan and ported to 2.80 by myself.

It was going to be added to 2.79, but lack of time and testing made it fall from being released.

See this thread for more info:

1 Like

Added MB-lab
MB-Lab is an attempt to keep the ManuelBastioniLAB Blender addon alive through community efforts
It’s number 50 of the free addons in first post.

Basic porting to 2.80 has happened on a fork of MB-Lab, I just created the new branch for 2.80 so it’s not ready just yet :slight_smile: But it works.

2 Likes

any idea about fracture cell addon?

1 Like

IDMapper is now ported. It was quite painful and although I tested it quite well, you might still encounter issues. If you do, please drop me a message.

1 Like

Not bad even if it’s still not ready, :wink:

1 Like

I’ve seen some people making conversion requests, so i’ll try my luck too

I have a pretty personal pet peeve with blender’s internal boolean modifier usage… more often than not something goes wrong when working with dense meshes

There is an add-on that, while slow, is extremely potent making the boolean operations: Cork on Blender

If anyone has free tme and wants to make a 2.8 version of the add-on, i’d be grategul

Added A.N.T.Landscape to built-in plugin list.
More built-in plugins have been updated/improved, like Oscurart Tools, Snap Utilities Line or 3D-Coat Applink.

Added MakePillow to Free list, thx to Blendernation for the news.

1 Like

Added; (see first post)

  • Speedsculpt (paid),
  • Meta-Rig for MB-Lab (free),
  • Destructive Extrude (free),
  • Mesh Aligh Plus (free),
  • Goz for Blender 2.8 (free),
  • Bezier Mesh Shaper (paid)

It’s possible I missed some addons. Don’t hesitate to add in in the Wiki.

2 Likes

Warning: In Today’s build some addons are broken (at least: boxcutter, ice-tools and others)
Probably related to the bevel-modifier: AttributeError: ‘BevelModifier’ object has no attribute ‘hnmode’

1 Like

I tried out your SmartF, but the results aren’t the best. It fails to find the next logical vert. Here’s a GIF showing SmartF(very start of Gif) Vs Machin3Tools SmartFace(hotkey 4) tool. At the end of the face fill run I hit 3 for Machin3Tools mesh cleanup to flip the faces.

Maybe I’m missing something with SmartF?

https://i.imgur.com/wJsRyhT.gifv

Any news about sculpt magic tools or blender sculpt tools?
I’m looking also for UV Align\Distribute to finally move to 2.8

Speedsculpt has been updated :wink:

3 Likes

Not sure if any of these addons used “object.dimesions” any ,but it’s now a “Read Only” setting and your addon will now be broken.

https://developer.blender.org/T60183

What was as simple as

import bpy

ACT_OBJ = bpy.context.active_object

ACT_OBJ.dimensions[0] = 30

is now this

import bpy

X_DIMENSION = 9.0
Y_DIMENSION = 2.0
Z_DIMENSION = 2.0

ACT_OBJ = bpy.context.active_object

ACT_OBJ.scale[0] *= X_DIMENSION/ACT_OBJ.dimensions[0]
ACT_OBJ.scale[1] *= Y_DIMENSION/ACT_OBJ.dimensions[1]
ACT_OBJ.scale[2] *= Z_DIMENSION/ACT_OBJ.dimensions[2]
1 Like

Shameless plug for my Corner Extrude add-on, which also has a compatible 2.8 version. Corner Extrude

1 Like

Not mine, just ported.
But i see what you mean on the GIF, will take a look and ask the original author about it too.