Day Sequence Plugin (Packaging solution ?)

Hey everyone,

I recently integrated Day Sequence into my project, and everything works perfectly in the editor. However, once the game is packaged, nothing works anymore. For example, after packaging, I’m at sunrise at 6 AM, but the day doesn’t progress. Yet, in the editor, the automatic day/night cycle works just fine.

I tried adding the plugin folders to the packaging settings, as well as some sequencers, but nothing changed. I also noticed that many people on the forums are experiencing the same issue, but no clear solution has been provided:

:link: Why plugin does not work in packaged project?
:link: Why sequence is not playing in packaged project?

If anyone has a solution, I’d really appreciate it! Thanks a lot :blush:

I just noticed that once packaged, I get stuck, I think, on frame -001 of the sequencer DS_24hr. That’s exactly where time freezes in-game

Im looking in to this as well, but havent been able to find a fix😮‍💨

I am having tha same problem!
I created some key points in the main sequence and after packaging and play, they are executed and changed normally. Only the “circle” of the sun and light do not move, the rest moves and progresses normally.

We’re all in the same boat, it’s a shame we can’t use this plugin in a packed project. Let’s wait for the devs’ feedback

yeah, its annoying

Hi, I have the same problem.

Do we have any ue tracker for that issue?

Hey everyone, thanks for the report. This is an issue specifically relating to Procedural Day Sequences that are used by the SunMoonDaySequenceActor in its referenced DSCA_24Hr collection asset. We’re investigating the issue.

Until we have a fix, the recommended workaround is to remove the Procedural Day Sequence from your DaySequenceCollection asset and replace it with your own standalone Day Sequence. If you’re keen on using the same curves from one of the Procedural Day Sequence you can copy the curves from the procedural sequence in editor into your own sequence by opening the Root Sequence from the viewport Time of Day menu.

Apologies for the inconvenience.

3 Likes

Thanks for the update :slight_smile:

Thanks a lot !

Any timetable on fixing date?

Hello,
When i copy the Keyframes from the procedural Day sequence and paste them in another sequence, it only pastes the Keyframes at 0000 and ignores all the others. Is there anything i could be doing wrong?

When i copy the Keyframes from the procedural Day sequence and paste them in another sequence, it only pastes the Keyframes at 0000 and ignores all the others. Is there anything i could be doing wrong?

It’s likely the difference in the playback ranges between the procedural day sequence and your local day sequence. The procedural day sequence for the SunMoonDaySequenceActor is 9000 frames, whereas the default playback range for a new sequence is 150, so it’s likely that it did paste all the keys, but you might need to zoom out to see it all and then either rescale the keys or adjust your playback range to match.

Any timetable on fixing date?

Unfortunately I’m unable to promise any specific dates. All I can say is that the issue is fixed internally and will be available in a future release.

For those that are building from source, the specific fix is available here in GitHub:
https://github.com/EpicGames/UnrealEngine/commit/df38bdddc1ef1ea2076c48b07e297167fd0662a4

2 Likes

404

https://github.com/EpicGames/UnrealEngine/commit/df38bdddc1ef1ea2076c48b07e297167fd0662a4

1 Like

Thanks for keeping on top of this!

Can you say if the next version is going to have the option to pause/start the sequence (“Run Day Cycle” checkbox) via blueprint? Currently I don’t think there’s a way to do that on the SunMoonSequenceActor.

Also should we expect those fixes in a hotfix or is this 5.6 territory?

Make sure you’re signed into a GitHub account that has access to the UE project.
https://www.unrealengine.com/en-US/ue-on-github

1 Like

There are Blueprint exposed functions on the DaySequence actor that do just that already, inherited from the ADaySequenceActor class: Play() and Pause().

bRunDayCycle only defines how the actor behaves on BeginPlay, it will be BlueprintReadWrite in an upcoming release like the packaging bugfix. This is being exposed primarily because we added the requirement that Play() will only begin playback if bRunDayCycle is true, to serve as an gating mechanism for playback if you have multiple systems that want to trigger playback.

Sorry, I’m not at the liberty to disclose more details on that front.