#view3d
Forth. Chess. View3D. Kempston midi interface.
December 18, 2025 at 1:51 PM
DARN I just realized I forgot to mute the OBS when recording this. Sorry for spontaneous sound blasting
The plugin is here
runtimeterror.com/tools/kritav...
Krita View3D Plugin
runtimeterror.com
April 20, 2025 at 5:32 PM
Disclaimer: never tried it

krita-artists.org/t/view3d-plu...

But i remembered where i saw people talking about it and found the link
View3D plugin to view/modify 3D mesh with the current image as texture
Hi all, I was doing some texture painting recently and i was using an old painting program for that (PSP7). However going back and forth from the program and Blender to check out the texture was a PI...
krita-artists.org
February 2, 2026 at 8:49 PM
did you know? in blender's wire and solid View3D modes, you can use Alt+B to clip the view to only show pixels that fall in that frustrum, letting you see inside a model like this, and letting you focus on what you want to see!
May 17, 2025 at 1:13 PM
Just released a new version of my View3D plugin for #krita that adds Krita 6 support, visibility masks to isolate parts of a 3D model, moat generation (to avoid issues with mipmaps/bilinear filtering) and a bunch of fixes.

codeberg.org/badsector/kr...

runtimeterror.com/tools/kritav...
March 25, 2026 at 6:04 PM
How to have the list of elements modify by a color filter?
Hi, I use class ExportContextAdnMesh to export Revit view 3D. I find how acces to "reel" color in view to export as same. My actual code : public RenderNodeAction OnViewBegin(ViewNode node) { View3D view = _StackDoc.Peek().GetElement(node.ViewId)as View3D; _view = _StackDoc.Peek().GetElement(node.ViewId) as View; // Test _options = new Options(); _options.View = _view; _options.ComputeReferences = true; if (EnoviaAddPanel.UseColorFilter) { ICollection<ElementId> ListFilters = view.GetOrderedFilters(); foreach (ElementId FilterId in ListFilters) { if (view.GetIsFilterEnabled(FilterId)) { Element ElFilter = _StackDoc.Peek().GetElement(FilterId); FilterElement Filter = ElFilter as FilterElement; ParameterFilterElement Param = Filter as ParameterFilterElement; if (Param != null) { ElementFilter ElementFilter = Param.GetElementFilter(); ICollection<ElementId> Ilist = view.GetDependentElements(ElementFilter); foreach (ElementId Ell in Ilist) { Debug.Print("Find=" + Ell.ToString()); } OverrideGraphicSettings OverSet = _view.GetFilterOverrides(FilterId); if (OverSet.SurfaceForegroundPatternColor.IsValid) { _color = OverSet.SurfaceForegroundPatternColor; _transparency = OverSet.Transparency; } } } } } return RenderNodeAction.Proceed;
forums.autodesk.com
June 25, 2025 at 3:09 PM