Well there are some issues with some of the tools from Fazek. Lots of changes to the interface and gui for some things like adding points, welding, etc. Because of these changes I want to do some more investigating.
Specifically Fazek's Add Point tool and Create Shape tool are giving me some head aches. Fazek's create shape tool tends to crash with very complex meshes. The add point tool doesn't "weld" properly and also doesn't have those nifty little green and red markers for welding.
I may try to just get them working "as is" and then continue to work on fixing them up for "full" AS 6 support. Maybe Fazek will jump in here and give it a go?
Sounds good vern, I'll have to have a look at my stuff too, are they hard to debug with AS6? I heard they just crash the app instead of giving error messages?
Huge discovery. Great progress! Managed to get both Fazek's translate points and add points to work with the "weld" highlighting in AS 6. It all had to do with this funny new thing I didn't notice. Silly thing is way up at the top hiding under the prefs code:
function LM_AddPoint:NonDragMouseMove()
return true -- Call MouseMoved() even if the mouse button is not down
end
This was mucking things up. But it's cool man cool. You can track the mouse even when it isn't down!!! That is how the points are highlighted with the add point tool even when the mouse is not down. Very cool... but also a big pain in the arse when you don't know it's there.
So what was happening is... either the silly points wouldn't highlight at all or they highlighted all the time. I couldn't figure out what the heck was going on until I found that.