SpacePurr
Results
2
comments of
SpacePurr
Hello. DrawingControl3D have protected method HighlighSelected. Create your own DrawingControl3D and new method with protected method HighlighSelected ``` public class MyDrawingControl3D : DrawingControl3D { public void HighlightS(IPersistEntity ent) { HighlighSelected(ent);...
UPD: I understood that i can't use it for excluding elements(Overloading invisible elements to something). I would like to make this process(ReloadModel => BuildScene) in some separated threads. I wonder...