Unwanted scaling

Sorry to revive this thread, but having gone through the aspect ratio thingy recently, I feel that while it is very nice to be able to have custom render scripts, the default one should still accommodate some basic options.

Obvious things like scale XY, scaleX, scaleY and noscale could be user choices in the project settings right under the display resolution.

I think that for beginners it would be more accessible, while expert users could still change the render script.

my 2 cents =)

6 Likes

@Gozock We also add our two cents :slight_smile:

The renderscript in builtins does support this now since two releases ago. You can post a message to the render script to change the scaling.

We will check this plugin tomorrow :slight_smile: Thanks!!!

Sorry, my bad, you still need to make a copy of the render script and then change from:

render.set_projection(stretch_projection(-1, 1))

to one of these:

render.set_projection(fixed_fit_projection(near, far))
render.set_projection(fixed_projection(near, far, zoom))
3 Likes