if keyboard.escPressed do DoAbort = queryBox… works fine. If I try if keyboard.escPressed and keyboard.shiftPressed do DoAbort = queryBox… it …
Richard, it works like a charm. Thanks again.
Thanks, Richard. That looks even better than using a button. Do I have to set escapeEnable = false first to prevent the script from crashing?
Great! I’ve finally got my mind around the callback mechanism and now it works like a charm. Thanks a lot, people! Have a bear on me!! :bounce:
Guys, thank you for all the answers. @SyncViews and Bobo: your suggestion makes perfect sense. I don’t know why but I was a little reluctant to put 1…
Thanks for the answers, guys (and sorry about the missing brackets, copy/paste was a mess and I retyped it in a hurry. My bad.) In my real code, the …
Thanks, harefort. Your method is what I had in mind, but only as a plan B. The only post I could find about the same question is more than 3 years ol…
I’ve tried a lot of things but i’m getting nowhere. Though what I’m trying to do seems rather simple. Moving the mouse over a selected Editable Poly,…
Thanks for the suggestion, floopyb, but this is for a modeling tool, so it needs to be fast. With a complex model and half its edges selected, saving …
I didn’t know about RayMeshGridIntersect(). This should speed things up a lot. I also completely missed the case of self-intersecting meshes. Thank …
Hi Rob. Thanks for answering. P is the point from which the ray is shot, just a position in 3D space. The direction of the ray can be anything, as lo…