feat: add SceneTemplateSettings and update boot configuration files

- Add ProjectSettings.asset for project settings management
- Update SampleScene.unity with latest scene configuration
- Update BootStateCode.cs enum values
- Update BootSettings.asset with current settings
This commit is contained in:
2026-05-27 05:00:16 +07:00
parent 3dd611423e
commit b91fe5adae
4 changed files with 818 additions and 169 deletions
+3 -3
View File
@@ -2,8 +2,8 @@ namespace QuizPleaseTest.Boot.States
{
public enum BootStateCode
{
Splash,
Load,
Menu
Splash = 0,
Load = 1,
Menu = 2
}
}