Can't use Physique, cos then I'd be popping in between the two. And physique is guff. Anyway, I've come up with a possible solution, which is a work in progress...I'll explain it after ranting Basically, what I want cannot be done - maxscript has holes. The solutions posted are the same as the one I have already - select a…
Generally you will get grouping information as part of your ls query if you have two objects with the same name but under different groups (as with duplicating/instancing groups), because two objects cannot have the same name; appending grouping information as a suffix keeps the names unique. To split the grouping…
No I didn't this glitch comes after I select element mode and then switch back to edge. It stays stuck in element mode. I found this tutorial on youtube very helpful as far as using the array tool. I was using the wrong rotate on the left not the right. I also didn't realize you have to choose pick from the world drop down…
This won't answer your question in blueprint specifics, but the problem is more of a general one anyway. You want an actor to go to one of a number of points when something else triggers a calling event. There's two ways to approach this I can think of. 1: you have an elevator with a vector array that holds the locations…
I have also done some work in UE5 for ym blopckout. previously I had it all in Blender just becasue I found it easier to manipulate and duplicate/array objects as I wanted. But now I need to set up my golden path and grand vista shots. Block-out is rough but here it is... Original Concept Art (Reminder) :…
can someone help a maxscript newbie out? I've been trying to get a mashup of this align script and maiuu's weld to last on a hotkey with modkeys and I am stuck.macroScript flattentest2 category:"tools" toolTip:"flattentest2"( (function getModKey = ( local resultData = #none if ( (not keyboard.shiftPressed) and (not…
That's sort of the thing with ML techniques - nobody really knows what happens inside the model.. I've only dabbled and am very much not an expert in this but I'm fairly confident the following is not complete horseshit... You show your ML model lots of Disney princess pictures, it detects that they have common features…
Mmmm. In that case, I think you should examine blueprints further first. I think this would be a bit too complex task for your first try. Anyways, the get actor location node gets the world space location of an actor.It would be highly recommended to track characters only near the player because of float precision in the…
I wonder if containers could work better? I've run into performance issues when I get a lot of containers in once scene but they would handle the instancing/updating a lot better. I agree with monster I think you're starting to dive into an area that not many people have to go, at least not around here. Most lighting in…
Hi! Here it is my solution to move ANY selected object back to the center of the world:
- create a MEL tab and copy/paste this snippet:
// Get the selected object(s)
string $selectedObjects[] = `ls -sl`; // Check if any objects are selected
if (size($selectedObjects) > 0) { // Loop through each selected object and move it…