pildanovak
(Vilem Duha)
December 28, 2018, 9:57pm
1
Optiloops is a new addon for optimizing face counts.
It was released on www.blenderkit.com as part of the subscription. You can get it through BlenderKit website or on GitHub, as with all my scripts.
Optiloops goes through loops of the mesh and removes loops selectively by several constraints:
only whole loops get deleted
max face angle present on the loop, so the shape is kept as much as possible
You can keep loops by these properties:
UV seams
loops essential for subsurf shape (sometimes called offset edges)
You can either run optiloops on whole mesh, or on the selection. The selection is âgrownâ from selected edges, so whole loops get removed.
Itâs possible also only select edges for removal, and then decide if they should be removed.
Sometimes, the operator can be run several times to get to the desired result.
24 Likes
Looks very well, it would be nice to try / have this addon separately
Shohrukh
(Shohrukh)
January 6, 2019, 2:50am
3
Awesome! Does this addon work in Blender 2.80? If not, please port this addon.
1 Like
pildanovak
(Vilem Duha)
February 11, 2019, 12:04pm
5
Hi, indeed, 2.8 compatibility is not a problem for this one. Itâs just that 2.8 isnât ready yet, crashing in so many cases. I hope to find time to convert all addons soon.
2 Likes
Woolfy13
(Michael Weisheim Beresin)
February 22, 2019, 12:45pm
7
Really nice tool! Would be amazing to have this addon in 2.8.
1 Like
Can this plugin âreflowâ the loops, because that will be the ultimate form of loop optimization.
pildanovak
(Vilem Duha)
February 24, 2019, 8:04pm
9
Hi, no ,it just takes the loops already present. The advantage is it never loses uv information and you stay with clean topology.
1 Like
Tosky
(Tosky)
April 17, 2019, 5:13pm
10
This Optiloops addon should definitely become a modifier, you canât imagine how useful would be for a full non-destructive workflow.
4 Likes
Dheim
(Dheim)
April 17, 2019, 8:01pm
11
I will buy this the instant it is released. This would save a tremendous amount of time!
1 Like
Hi you mean when it will be released for blender 2.8? because itâs released for 2.79. 2.8 coming soon, seems API is finally stable and fixed.
SteveYang
(Steve Yang)
May 30, 2019, 1:47am
14
Mark and wait for 2.8
Great work.
This add-on works with Blender 2.8 by changing only three lines.
-Blender-/optiloops.py at master · bookyakuno/-Blender-
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
bl_info = {
"name": "Optiloops",
This file has been truncated. show original
7 Likes
SteveYang
(Steve Yang)
May 30, 2019, 8:16am
16
bpy.types.VIEW3D_PT_tools_meshedit
change to
bpy.types.VIEW3D_MT_edit_mesh
Just only one needed API changed, others no.
1 Like
vduha
(Vilém Duha)
August 18, 2019, 7:05am
18
Hi Everyone,
this addon was updated on BlenderKit and also on Github, enjoy, and sorry for the delay with it
2 Likes
KickAir_8P
(KickAir 8P)
August 18, 2019, 3:37pm
19
Thanks! Canât find the Github link, please post it?