OmiyaGames / template-unity-project

This is a template Unity project Omiya Games uses to start their game project.
https://omiyagames.com
Other
16 stars 16 forks source link

[FEATURE] Migrate SceneTransitionManager to a project settings window #46

Open japtar10101 opened 4 years ago

japtar10101 commented 4 years ago

Is your feature request related to a problem? Please describe.

Scene Management.

Describe the solution you'd like

It seems Unity is opening up the API to add windows under Project Settings and Preferences. Since the scene management is shared across the entire project, it'd be better to move the feature to both a ScriptableObject and a Project Settings window. If possible, it should also monitor and automatically add new scenes (or list all the scenes) from the build settings.

Tasklist

Describe alternatives you've considered

The current method, which everything is stored in a Singleton prefab. Not useful, as the information is likely not needed to be set on runtime.

Additional context

Part of an effort to decouple a lot of the Singleton scripts. See Issue #19 .