I have to bother you with my noob questions again,
I am trying to automatically set the master field box shape size to that of the actor I attached it to which can be any arbitrary geometry collection I generated from any arbitrary 3D asset.
For that I needed to do 3 things:
Set the world location to the origin aka center of an actor in the world which seems to work fine.
FIX the initial scale somehow because for some reason the initial scale when dragging the actor into another and making it its child, the master fields scale is not 1.0 across the board instead its some value that makes the box equally as large initially in absolute value anywhere you put it. So if your parent actor is large the scale value intially is low.
→ setting that scale to 1.0 at begin play does not seem to work.
Scale the master field up to the size of the parent actor based on relating the absolute bounds of both actors → does work partially.
You can see here I attempt to just set the scale to 1.0 immediately of the box volume.
Doesn’t seem to have any effect. What node would one want to use? To set this value:
Which node (tried many different ones relating to “scale”) would one use to set the scale that masterfields box shape to 1.0 automatically which seems to by default relate to the parent actor and attempt to achieve the Box Volume initial absolute size setting and therefore not start at 1.0?
How can one fix an apparently accidentally swapped Axis of an imported 3D asset inside unreal? I have absolutely zero clue about modelling etc.
and maybe 3. Since the goal is:
→ I just take this reusable actor, drag it onto any arbitrary fractured 3D asset actor
→ it shapeshifts the master field to the actors dimensions (or a factor beyond them)
given I am a developer (not games tho obviously) not a designer, would it be wiser to just attempt doing this in C++ instead of this blueprint stuff?
Yeah I simply set the absolute box size to the absolute size of some bounding box of the geometry gollection actor now.
That was my solution that I am happy with for now. Thanks for the reply though. The scale gets â– â– â– â– â– â– up because internal transformations happen automatically at runtime which I have taken a look at in the engine files. The absolute setting overrides that â– â– â– â– although the debug box I need to draw manually now because that does not get properly updated at runtime.
Additionally I am running from one issue into the next.
Now with Chaos Caching there seems to be literally no way to play the cache back aka in reverse at runtime like you can literally do by simply moving the “start time” variable LIVE in the editor it gets updated in real time in the viewport.
It’s mental you cannot achieve this in blueprints easily apparently given it is very obviously already implemented in the editor. Literally copy pasta.