Hello, I am trying to make some text cut off when it’s outside of a frame. As an example, you could have a frame and a textlabel inside it which is half outside and half inside the frame. I want the outside part to be cut off, with the inside part visible (this is done on a transparent background so please don’t say that you can put something over it). How can I do that?
Thanks!
1 Like
You can use a Frame as a container for the TextObject, then enable “ClipsDescendants”. As the name implies, anything outside of the bounds of the frame will not be “drawn”. You can then manipulate the descendant TextObject’s position to alter its appearance within the frame, with parts of it that aren’t in the frame not showing.
Example: https://i.imgur.com/NjHcKWQ.png https://i.imgur.com/KghhQJY.gif
Reference: ClipsDescendants
6 Likes