Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ Ready-to-use templates for **Nakama** game development. Download, play, and copy

**Nakama Templates**

- [Leaderboards](./UnityNakamaLeaderboards/) - Weekly and global rankings with real-time record updates
- [Friends](./UnityNakamaFriends/) - Manage friend lists and requests, block and unblock players.
- [Cloud Save](./UnityNakamaCloudSave/) - Save player data in the cloud that syncs between devices.
- [Friends](./UnityNakamaFriends/) - Manage friend lists and requests, block and unblock players.
- [Groups](./UnityNakamaGroups/) - Create in-game communities for players to band together.
- [Leaderboards](./UnityNakamaLeaderboards/) - Weekly and global rankings with real-time record updates.
- [Tournaments](./UnityNakamaTournaments/) - Run tournaments with rules around participation and scoring.

## Documentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,13 @@ IMPORTANT NOTES FOR END USERS:
1. The Nakama Unity SDK is free to use under Apache 2.0 license for both
commercial and non-commercial projects.

2. The LayerLab UI assets are provided under Creative Commons BY-NC-ND 4.0,
which means:
- They can be used for non-commercial projects only
- Attribution to LayerLab must be provided
- The assets cannot be modified or redistributed separately
- For commercial use, you must replace these assets with your own designs
2. The LayerLab UI assets are provided under Creative Commons CC0 1.0 Universal,
which means you can copy, modify, distribute, and perform the work, even for commercial purposes, all without asking permission.

3. You will need to set up your own Nakama server to use this template in
production. The demo server is provided for testing purposes only.
3. You will need to set up your own Nakama server to use this template in production.
The demo server is provided for testing purposes only.

4. When using this template in your own projects, ensure you comply with all
applicable licenses, especially regarding the UI assets if you intend
commercial use.

5. This package redistributes the Nakama Unity SDK under the terms of the
4. This package redistributes the Nakama Unity SDK under the terms of the
Apache License 2.0, which permits such distribution.

Last Updated: January 2025
Last Updated: September 2025
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,13 @@ IMPORTANT NOTES FOR END USERS:
1. The Nakama Unity SDK is free to use under Apache 2.0 license for both
commercial and non-commercial projects.

2. The LayerLab UI assets are provided under Creative Commons BY-NC-ND 4.0,
which means:
- They can be used for non-commercial projects only
- Attribution to LayerLab must be provided
- The assets cannot be modified or redistributed separately
- For commercial use, you must replace these assets with your own designs
2. The LayerLab UI assets are provided under Creative Commons CC0 1.0 Universal,
which means you can copy, modify, distribute, and perform the work, even for commercial purposes, all without asking permission.

3. You will need to set up your own Nakama server to use this template in
production. The demo server is provided for testing purposes only.
3. You will need to set up your own Nakama server to use this template in production.
The demo server is provided for testing purposes only.

4. When using this template in your own projects, ensure you comply with all
applicable licenses, especially regarding the UI assets if you intend
commercial use.

5. This package redistributes the Nakama Unity SDK under the terms of the
4. This package redistributes the Nakama Unity SDK under the terms of the
Apache License 2.0, which permits such distribution.

Last Updated: January 2025
Last Updated: September 2025
56 changes: 56 additions & 0 deletions UnityNakamaTournments/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@

# Created by https://www.gitignore.io/api/unity
# Edit at https://www.gitignore.io/?templates=unity

# Jetbrain Rider Cache
.idea/
Assets/Plugins/Editor/JetBrains*

# Visual Studio Code
.vscode/


### Unity ###
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/[Ll]ogs/
/[Uu]ser[Ss]ettings/
Assets/AssetStoreTools*
# Unity local user project setting
UserSettings/

# Visual Studio cache directory
.vs/

# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
.consulo/
*.csproj
*.unityproj
*.sln
*.suo
*.tmp
*.user
*.userprefs
*.pidb
*.booproj
*.svd
*.pdb
*.opendb
*.VC.db

# Unity3D generated meta files
*.pidb.meta
*.pdb.meta

# Unity3D Generated File On Crash Reports
sysinfo.txt

# Builds
*.apk
*.unitypackage

# End of https://www.gitignore.io/api/unity
8 changes: 8 additions & 0 deletions UnityNakamaTournments/Assets/Packages.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions UnityNakamaTournments/Assets/Packages/Nakama.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading