Skip to content

Commit edeba3c

Browse files
authoredMar 24, 2025··
feat: consolidate simplification (#50)
BREAKING CHANGE: The 4.x update consolidates the changes in the 3.x and simplifies a few more steps of the usage experience. It completely removes the ISceneLoader implementations and adds a static MySceneManager class so you don't have to manually control its lifecycle. Refer to the upgrade guide at https://scene-loader.mygamedevtools.com/docs/upgrades/from-3-to-4 for more details.
1 parent c6081ca commit edeba3c

File tree

1,035 files changed

+100748
-3526
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,035 files changed

+100748
-3526
lines changed
 

‎.github/ISSUE_TEMPLATE/bug_report.yml

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: Bug Report
2+
description: Report a bug or unexpected behavior
3+
labels: ["bug"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## Bug Report
9+
Please provide as much detail as possible to help us identify and fix the issue.
10+
- type: input
11+
id: summary
12+
attributes:
13+
label: Summary
14+
description: A brief summary of the bug
15+
placeholder: "Scene transition freezes..."
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: steps
20+
attributes:
21+
label: Steps to Reproduce
22+
description: Steps to reproduce the issue
23+
placeholder: |
24+
1. Load scene A
25+
2. Transition to scene B
26+
3. Observe the freeze
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: expected
31+
attributes:
32+
label: Expected Behavior
33+
description: What did you expect to happen?
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: actual
38+
attributes:
39+
label: Actual Behavior
40+
description: What actually happened?
41+
validations:
42+
required: true
43+
- type: input
44+
id: version
45+
attributes:
46+
label: Package Version
47+
description: The version of the package you are using
48+
placeholder: "e.g., 3.1.0"
49+
validations:
50+
required: true
51+
- type: input
52+
id: editorversion
53+
attributes:
54+
label: Unity Editor Version
55+
description: The version of the Unity Editor you are using
56+
placeholder: "e.g., 6000.0.40f1"
57+
validations:
58+
required: true
59+
- type: textarea
60+
id: logs
61+
attributes:
62+
label: Logs
63+
description: Please attach any relevant logs or errors
64+
render: shell
65+
- type: checkboxes
66+
id: terms
67+
attributes:
68+
label: Acknowledgement
69+
options:
70+
- label: I have searched the existing issues to avoid duplicates
71+
required: true
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Feature Request
2+
description: Suggest an idea or enhancement
3+
labels: ["enhancement"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## Feature Request
9+
Have a feature idea? Let us know what you'd like to see in My Scene Manager!
10+
- type: input
11+
id: summary
12+
attributes:
13+
label: Summary
14+
description: A brief summary of the feature
15+
placeholder: "Add support for async scene loading with progress callbacks"
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: problem
20+
attributes:
21+
label: Problem or Use Case
22+
description: What problem would this feature solve? How would it be useful?
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: proposal
27+
attributes:
28+
label: Proposed Solution
29+
description: Describe how you'd like the feature to work
30+
validations:
31+
required: true
32+
- type: checkboxes
33+
id: terms
34+
attributes:
35+
label: Acknowledgement
36+
options:
37+
- label: I have searched the existing issues to ensure this feature hasn't been requested already
38+
required: true

0 commit comments

Comments
 (0)
Please sign in to comment.