I have a C++ class, it is a UActorComponent. I created a blueprint and attached my custom component and a static mesh. The custom component calls GetOwner() and updates the actors scale using SetActorScale3D (). The actor visibly has the new scale value in it’s properties, BUT, the actual static mesh is the same size. That is to say, the static mesh does not graphically scale even though the actor’s properties scale has changed.
For example, the scale will read as ~(0,0,0) but the static mesh will be at full size (1,1,1).