Iv noticed that the physical dimensions of an actor is according to the actors image file size, ie if I have an actor with an image 250x250px assigned to it, that will become the size of the actor.
Is there any way to manipulate this through the Script editor so that the actor is displayed as 100x100px regardless of the image size assigned to it while the overflowing part of the image is cropped out?
I tried something like:
actor1.width = 100;
actor1.height = 100;
But this didn't do anything.