I am a noobie and I would like to know how I can create a rectangle which scales vertically (Y) but only in one direction. This works, but my rectangle is scaling in both directions (up and down). I would like to achieve the scaling only towards the up direction. Is this possible? how?
Any clue is welcome
Well, there are many different ways you could do it. You could draw a black rectangle on the bottom half of the image, or you could use the Mask module to mask the bottom half, etc.
Also, in Magic 2.0 there will be a new feature which eliminates the small delays you noticed .
From experience, the easiest way to achieve this consistently is to translate the rectangle by half its size, such that the edge of it is effectively resting on it's origin point. I.e.translate it first to place an edge in the middle of the screen.
The order of operations is: 1. Translate. 2. Scale based on input. 3. Do other scaling and translating as needed.