Yes. (Will not be changed)
Good to know, not an issue
Hi,
Is it possible to snap origin to object bouding box center in your script? if not, could you add such an option?
hello. I have a suggestion. It would be great to have Show/Hide Object properties like Name, Axis, display as(wire/textures / InFront etc) in KeOverlays Pie. What do you think ?, also the Object Axis is not really functional. Its better to have colored axis(rendered as front gizmo type), though I dont know if thast possible !
Already exists?
ed: There is also the Object mode function in my âAlign Origin to Selectedâ - align to cursor etc. check the Select & Align Menu.
hey,
maybe as a sub-pie. hmm. That pie menu is a bit crowded as it is, might have to rethink the layout. TBD.
Yeah. A sub pie menu or a pop up cud reduce clutter. Also the commonly used ones like showing Extras, object wire frames, etc most used items can be there & less used like showing normals or object outlines etc can be moved to sub pie or pop-up.
Disclaimer - Sorry for the long post
Display as bounds/ wires/ solid/ textured toggle would be nice! Iâm thinking, which ones need to be toggled?
- Bounds/ textured for scattering (lots of assets in the scene)
- Wires/ textured for boolean modeling
- Current mode > textured (since textured is the default)
âââ
Got to say, that now I am reconfiguring my entire keymap from scratch, I realised how much I depend on Kekit and it was the addon I missed the most. So I want to thank you again for making it, very, very much appreciated!
Minor reports
HUD scaling
I still find the HUD scaling very small on my 27 inch 4k monitor (UI scaling set to 1,05). The header, "linear arrayââ is about 12 pt, the text close to 8 pt
For reference, I can read the text comfortably at a resolution scale of 1,5, when the text is about 12 pt and the header 16pt.
Linear array count
The help menu in linear array does not mention â(A) Toggle numerical input mode for array countâ. Also, it wonât go higher than 9 (no double digit support). This could possibly be resolved through an undo last.
Quick Scale units
According to the docs, Quick scale is supposed to use scene units, however, in my case, the units are set to millimeters, but quickscale still uses meters as unit for scaling.
If you donât want to change this behaviour, I think it would be clearer if the âsizeâ would be renamed to âsize (m)â or, the value should have an âmâ after the value, so â0,01mâ in my example.
In case you do want to change this, having the units in the input box wouldnât hurt either.
Feature requests
-
View & cursor bookmarks pop-up
In addition to the View&CursorBookmarks pie menu and the N-panel, I would like to see this as a pop-up. The reason being, a pie menu can only be clicked on once, while the tool needs to be activated multiple times for 1) Saving the current bookmark 2) Change to a new bookmark. -
Remapping of modal hotkeys for array
Although it is also fairly easy to change them in the script > just search âSâ, âXâ âZâ, etc. from the help menu and theyâll pop right up), but youâll need to keep an eye out when updating the kit. - Can the help menu for arrays remain open, if I opened it the previous time I used it? Also when opened in linear array, I may want it persistently opened/ closed for the circular array.
Hey, wow, thorough ;>
UI scaling : It is as intended though. Its just that you donât use much UI-scaling, and I like the text smalI ;> (i just use smaller fonts, not scaling, @ 1440p) But, I could maybe add an additional scaling float in the add-on prefs.
Linear Array: Ah, I will add it to the help text. It does have multi-digit input - its just a bit fast, and a little finicky. Not sure a redo-panel will work on that one. Maybe at some point, but probably not.
Quick Scale: Yes, I should apply full unit conversion. Adding to the list.
Bookmarks pie popup: TBD
Mapping modal hotkey: Not sure I want to do it for every modal script, and I dont want to do it for just one. Not at the moment.
Help menu status: Yes, can probably be done pretty easily, adding to list.
Hi!
Here is error if in Edit mode and nothing is selected and click on BBox.
see comment below by Kiellog
BBox script: Can confirm, will fix
look at this script, to switch visibility for entire collection objects.
It useful if you need, for example, to switch your Boolean Collection to Bounds or Wires.
Speaking of ideas for the script collection, the things I do mostly with Modo imports:
- Run a vertex mesh by distance on all selected mesh to avoid polygon drawing issues (easy in Modo, but in Blender you need a script for that).
- Run geometry clean up and selection of objects. (easy in edit mode or in Modo, but in object mode I use a different script).
- Reset scale (apply scale) with instances. Thats easy but a bit complicate to use, wonder why there is no script that does these steps automatically. (relation ship local, then apple scale, then again link data).
- Apply modifier to instances. Also just a few clicks, but would be easier with single button.
- Now the tricky work around that I do in order to get true instances (Blenders data link is more or less a reference mesh, that breaks when a modifier is being added). I make a linked copy of the source object I want. Then I add a geometry node modifier to it, unlink the source and instead link the original copy as instance, then copy that modifier to all instances) Now all instances will get every modifier added, like UV unwrap, Array, Subdivision and it will always be instances that perform fast. Someone should do this as a script, so its added fast. I indeed do that on ever object using subdivision⌠huge performance gain.
cheers!
- I donât understand - do what by distance? (missing a verb?)
- There are clean up tools in keKit
3-5. Yes, a complete system/workflow for instance handling is a bit lacking in Blender. I think there are some add-ons that address this already though, in various ways. (i dont remember which atm, and you can do your own googling ;>)
-
Merge vertex by distance. Thats because some CAD meshes produce vertex on the same position. I normally use the vertex distance 0.0 here in Modo. However this only works on objects, if you do that on merged mesh it may lead to unwanted connections. Hence I do an object selection (note thats because they where solids before getting meshed)
-
I know most other tools, just thought it belongs to the Modo to Blender workflow. And yes some use simple scripts, but 5. is my own idea and its the reason I use Blender.
Ah i see,
but I am still confused about nr1. What is wrong with the vanilla (blender) merge by distance?
EDIT: ah ok now i get it. you want it in object mode? Not sure I understand what the issue is still.
note: In keKit mesh clean you can run Remove Doubles (âDouble Geoâ) option, in object mode. It should do the same as merge 0.0.
âDouble Geoâ does not take into account mesh islands, and two vertices with the same coordinates but from separate mesh islands in one object will be connected after this.
Thats why I recently asked about the same operation but if vertex share the same edges:
I think this is what @RobertLe wanted to say?
Yeah thats the reason:
- Modo select all objects, hit 1 for vertex mode, run merge vertex at 0.0. Wait till done.
- Blender select all objects, shift click to edit all objects in vertex mode, then run the command⌠chaos happen!
Not sure if you can run mesh cleanup on a selection of objects⌠could be a solution.
I personally use this method now (separate script).
Ah, ok, now I understand