How to make RCP start playing Timeline from scratch when receiving OnNotification.

How to make RCP start playing Timeline from scratch when receiving OnNotification. At present, I have only played the timeline once after receiving the OnNotification, and cannot replay it again after receiving the OnNotification again.

Hi @MaoChao,

The timeline you have now actually already replays each time you receive the notification—not just once!

The issue you're likely running into is that your Show action will have already triggered after the first time the timeline plays, meaning that on subsequent plays it will have no obvious effect since the entity is already visible. The same is true for the Transform To action, where if the entity is already at the final destination, subsequent plays will appear to have no effect.

To address this, you'll need to configure your timeline to reset those relevant properties when it starts. For example, to make your Show action have a visible effect each time you play the timeline, consider adding a Hide action with a duration of 0s to the start of your timeline. This will set your entity's opacity to 0%, giving the Show node something to work with as it increases the opacity back up to 100%.

Let me know if you have any questions about this approach!

How to make RCP start playing Timeline from scratch when receiving OnNotification.
 
 
Q