Skip to content

Commit e7e9613

Browse files
committed
converts entire project to UPM
1 parent eed63bd commit e7e9613

File tree

88 files changed

+635
-6081
lines changed

Some content is hidden

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

88 files changed

+635
-6081
lines changed

.gitignore

+44-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,36 @@
1+
# This .gitignore file should be placed at the root of your Unity project directory
2+
#
3+
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
4+
#
15
/[Ll]ibrary/
26
/[Tt]emp/
37
/[Oo]bj/
48
/[Bb]uild/
59
/[Bb]uilds/
6-
/Assets/AssetStoreTools*
10+
/[Ll]ogs/
11+
/[Uu]ser[Ss]ettings/
712

8-
# Visual Studio 2015 cache directory
9-
/.vs/
13+
# MemoryCaptures can get excessive in size.
14+
# They also could contain extremely sensitive data
15+
/[Mm]emoryCaptures/
16+
17+
# Asset meta data should only be ignored when the corresponding asset is also ignored
18+
!/[Aa]ssets/**/*.meta
19+
20+
# Uncomment this line if you wish to ignore the asset store tools plugin
21+
# /[Aa]ssets/AssetStoreTools*
22+
23+
# Autogenerated Jetbrains Rider plugin
24+
/[Aa]ssets/Plugins/Editor/JetBrains*
25+
26+
# Visual Studio cache directory
27+
.vs/
28+
29+
# Jetbrains Rider cache directory
30+
.idea/
31+
32+
# Gradle cache directory
33+
.gradle/
1034

1135
# Autogenerated VS/MD/Consulo solution and project files
1236
ExportedObj/
@@ -22,13 +46,29 @@ ExportedObj/
2246
*.booproj
2347
*.svd
2448
*.pdb
49+
*.mdb
50+
*.opendb
51+
*.VC.db
2552

2653
# Unity3D generated meta files
2754
*.pidb.meta
55+
*.pdb.meta
56+
*.mdb.meta
2857

29-
# Unity3D Generated File On Crash Reports
58+
# Unity3D generated file on crash reports
3059
sysinfo.txt
3160

3261
# Builds
3362
*.apk
63+
*.aab
3464
*.unitypackage
65+
66+
# Crashlytics generated file
67+
crashlytics-build.properties
68+
69+
# Packed Addressables
70+
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
71+
72+
# Temporary auto-generated Android Assets
73+
/[Aa]ssets/[Ss]treamingAssets/aa.meta
74+
/[Aa]ssets/[Ss]treamingAssets/aa/*

.vsconfig

-6
This file was deleted.

Assets/Readme.txt

-24
This file was deleted.

Assets/Scenes.meta

-9
This file was deleted.

Assets/Scripts/Runtime/ISingleton.cs.meta

-11
This file was deleted.

Assets/Scripts/Runtime/MonoSingleton.cs.meta

-12
This file was deleted.

Assets/Scripts/Runtime/PersistentMonoSingleton.cs.meta

-12
This file was deleted.

Assets/Scripts/Runtime/Singleton.cs.meta

-11
This file was deleted.

Assets/Scripts/Runtime/UnityCommunity.UnitySingleton.Runtime.asmdef

-3
This file was deleted.

Assets/Scripts/Samples/GameManager.cs.meta

-12
This file was deleted.

Assets/Scripts/Samples/Readme.txt

-13
This file was deleted.

Assets/Scripts/Samples/SceneGameManager.cs.meta

-11
This file was deleted.

Assets/Scripts/Samples/SceneTest.cs.meta

-11
This file was deleted.

Assets/Scripts/Samples/Test.cs.meta

-12
This file was deleted.

CONTRIBUTING.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Contributing to Unity Singleton
2+
3+
Thank you for considering contributing to Unity Singleton! We welcome contributions from the community to help improve this project.
4+
5+
## How to Contribute
6+
7+
1. **Fork the Repository**: Start by forking the repository to your GitHub account.
8+
9+
2. **Clone the Repository**: Clone the forked repository to your local machine.
10+
```sh
11+
git clone https://github.com/**your-username**/unitysingleton.git
12+
```
13+
14+
3. **Create a Branch**: Create a new branch for your feature or bugfix.
15+
```sh
16+
git checkout -b **feature-name**
17+
```
18+
19+
4. **Make Changes**: Make your changes to the codebase.
20+
21+
5. **Commit Changes**: Commit your changes with a clear and descriptive commit message.
22+
```sh
23+
git commit -m "Description of the feature or fix"
24+
```
25+
26+
6. **Push Changes**: Push your changes to your forked repository.
27+
```sh
28+
git push origin feature-name
29+
```
30+
31+
7. **Create a Pull Request**: Open a pull request to the main repository. Provide a clear description of your changes and any related issues.
32+
33+
## Reporting Issues
34+
35+
If you encounter any issues, please report them on the issues tab. Provide as much detail as possible to help us resolve the issue quickly.
36+
37+
## Getting Help
38+
39+
If you need help or have any questions, feel free to reach out by opening an issue or joining our community discussions.

Assets/Scripts/Samples/Readme.txt.meta CONTRIBUTING.md.meta

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)