Over the last couple of months during production, I have been making tools to help speed up the workflow, some of these include Empty - Selected Vertex, Create Collection with Object name, and a whole bunch of other quality of life improvements.
As of today, I have bundled them in a neat little package.
Thanks for the great update! I am really enjoying the add-on and I quite liked the System > Low Fi option. haha.
I have a request for a future addition. Could you create a feature that if you apply transforms on an object that has a negative scale (mirrored) it will flip the objects normals as well? That would be incredibly helpful!
thanks for the support
I think I can implement that request, I don’t see why not… maybe a little bit of trickery is required but it’s not out of the realms of impossible, I get what you mean but if you can explain step-by-step I can replicate it.
cheers
so the steps in my head are …
select active object, check if the scale sits on the -
Apply _Scale
Flip Normals
that’s about the best method I can think of, I can’t make it interactive otherwise as soon as it hits the - it will run the operator, let me test it brb
Edit how are you flipping normals in object mode, do you have an addon for that ? I thought it was edit command- what’s the pie menu for ?
Apply Transformation and Flip Normals - test
I might need to expand on it and make a few additional tools, for example, what if you have poly selected in edit mode, means I would need to select all the mesh
more than one object, autocheck negative scale , auto mirror - I have a few ideas.
Apply Transformation Flip Normals
Flip selected objects normals - in object mode
Add guide toggle for camera display
Ui toggle elements are now saved with preferences
Select Scale on negative, Apply Transform, Flip Normals
Select object with negative scale
Select objects with negative X,Y or Z location
add color walk for collection, will color collections 1 to 8 then loop back around - added to collection menus
Save preferences add to system tools menu
selects objects that are disabled in render
select objects that have holdout
added selection tools menu to main menu
moved true random select to Selection Tools Menu
added select by poly count smaller or = , greater or equal to
There was one tweak I was wondering if possible. Could you make the Mesh to Object / Object to Mesh utility work on multiple objects? I had tons of extracted parts that I had to cycle through one by one. haha.
so I made it work on multiple objects, and it works but you also need to be careful because if you have spare data like a cube deleted from the scene, it will approach it and rename it cube.001, I think what I am trying to say is you need to approach it with caution.
Would it be possible to add a feature that would allow you to search/replace file extensions in Blender? I had to convert the textures a project from .tga to .png to reduce file sizes. Luckily I came across this script, but I figured it might be a nice addition to the tool.
import bpy
for img in bpy.data.images:
img.filepath = img.filepath.replace('.tga', '.png')
img.reload()