Timeline in Game Instance

I want to add a timeline to track my sun degree over the course of a game day so even when you change levels the sun position keeps moving forward. However after making my own game instance it’s not letting me add in a timeline. Is there something I need to enable or should I be doing this a different way?

yes… you shouldn’t do that in the GameInstance.

Do such task in the GameMode instead :wink:

The Instance should only be used to carry Variables that should persist across multiple levels… Or functions needed to be callable from any Instance reachable class…

But Gameplay Rule stuff… to which daytime and sun position counts, belong to the GameMode.

1 Like