diff --git a/Packages/com.trytalo.talo/package.json b/Packages/com.trytalo.talo/package.json index 5b10f63..d6ad8fe 100644 --- a/Packages/com.trytalo.talo/package.json +++ b/Packages/com.trytalo.talo/package.json @@ -2,7 +2,7 @@ "name": "com.trytalo.talo", "version": "0.29.0", "displayName": "Talo Game Services", - "description": "Talo (https://trytalo.com) is an open-source game backend with services designed to help you build games faster. You can currently:\n\n- Identify and authenticate players\n- Store persistent data across players\n- Track events (levelling up, finding loot, etc)\n- Display high scores with leaderboards\n- Store and load player saves\n- Load game config options and flags from the cloud\n- Get feedback directly from your players", + "description": "Talo (https://trytalo.com) is an open-source game backend with services designed to help you build games faster. You can currently:\n\n- Identify and authenticate players\n- Store persistent data across players\n- Track events (levelling up, finding loot, etc)\n- Display high scores with leaderboards\n- Store and load player saves\n- Load game config options and flags from the cloud\n- Get feedback directly from your players\n- Send channel messages between players", "unity": "6000.0", "keywords": [], "author": { @@ -31,6 +31,11 @@ "displayName": "Authentication Demo", "description": "A register/login/verify flow, showing how to create and authenticate player accounts", "path": "Samples~/AuthenticationDemo" + }, + { + "displayName": "Chat Demo", + "description": "A simple chat UI, allowing you to create channels, join channels and send messages", + "path": "Samples~/ChatDemo" } ], "changelogUrl": "https://github.com/TaloDev/unity/releases", diff --git a/README.md b/README.md index 1a57f1d..baf4163 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,10 @@ This repo is a Unity game (the Talo Playground) that lets you try out and previe - 🕹ī¸ [Leaderboards](https://trytalo.com/leaderboards): Highly customisable leaderboards that can sync with Steamworks. - 💾 [Game saves](https://trytalo.com/saves): A simple and flexible way to load/save game state; also works offline. - 📊 [Game stats](https://trytalo.com/stats): Track global or per-player stats across your game; also syncs with Steamworks. +- đŸ’Ŧ [Game channels](https://trytalo.com/channels): Send real-time messages between players subscribed to specific topics. - ⚙ī¸ [Live config](https://trytalo.com/live-config): Update game settings from the web with zero downtime. - 🔧 [Steamworks integration](https://trytalo.com/steamworks-integration): Hook into Steamworks for authentication and ownership checks. -- đŸ’Ŧ [Game feedback](https://trytalo.com/feedback): Collect and manage feedback from your players. +- đŸ—Ŗī¸ [Game feedback](https://trytalo.com/feedback): Collect and manage feedback from your players. - 🛡ī¸ [Continuity](https://trytalo.com/continuity): Keep your data in-sync even when your players are offline. ## Samples included with the package