Drag them to a viewport, or use MaxScript -> Run Script from the main menu.
Ahh well I’m not sure where to start, I’m at 25k lines of code :argh: The structure is not unlike backburner. There’s a manager component, a server …
How exactly are you implementing it? I’m building one myself at the moment.
Seems you’re right. The following variation uses a bitarray for index tracking, ignoring the values altogether, and allows duplicates in the source ar…
The issue is I called this a sorting function. It’s actually a reorder function. Who says the caller would want the output sorted? It’s about taking o…
As I understand it, the input is by definition a sorted unique list – a range of frames… I can just call sort() on the list before this function if ne…
It was a typo, fixed.
Sorry, my previous function was indeed incorrect. This one seems to work fine: fn sortMiddle2 arr = ( local sorted = #(arr[1]) local pairs = #(#(1,…
That’s quite a lot of code fn sortByMiddle arr = ( local sorted = #() local stepSize = amax 1 (arr.count – 1) while (stepSize > 0) do ( loc…
Mambo4: Any hint for #2? My test static class won’t instantiate via CreatInstance I assume It’s because Static Classes aren’t meant to instantiate …
assembly.createInstance can also do it, though the signature is more tedious:
Looks cool. Two other useful methods that you can add are: Create instance with parameters. Invoke a method or property on a static class.
There’s no way to unload an assembly, unless you create it in a new AppDomain, which is usually counterproductive. What you could do though is keep r…
If you can recreate the problem with a simple scene and provide the actual code you’re using then someone can try to help you (most likely for free), …
Is the problem that the vrmeshes are not replaced correctly, or is it some gamma related issue? Please post right output image vs. wrong output image.