Yes, it’s possible 🙂
For that, you’d use an Element Animator to move the logo after a delay.
Simple idea
- Add the Minecraft logo as an element in your layout.
- Add an Element Animator.
- Create keyframes for:
- the logo’s starting position
- the logo’s new position
- Let the animation start after some time.
Important note
The Element Animator controls position, size, and anchor point only.
It does not animate opacity or visibility.
How to do the delay
FancyMenu doesn’t have a simple “wait X seconds” action.
The usual way is to use a Ticker with a variable:
- Create a variable like
timer - Let a Ticker increase it every tick
- After the timer reaches your desired value, use an IF condition to trigger the change
For your case
If you want the logo to move after a few seconds, you can:
- animate it with the Element Animator
- and use a Ticker + variable to decide when the new position should be shown
If you want, I can give you a step-by-step setup for the title screen logo specifically.