You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: developers/game-development/how-to-get-your-game-seen.mdx
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ When a player has activity sharing enabled, Discord will automatically detect wh
17
17
18
18
Improving your Rich Presence integration is one of the easiest ways to start getting more value out of Discord. In this article we'll cover everything you need to know to integrate more tightly with Discord and start finding new players.
19
19
20
-
<imgsrc="/images/game-development/how-to-get-your-game-seen/rich-presence-intro.webp"alt="Rich Presence in a user's profile on Discord" />
20
+
<imgsrc="/images/game-development/how-to-get-your-game-seen/rich-presence-intro.webp"alt="Rich Presence in a user's profile on Discord"style={{width: "60%", height: "auto"}}/>
21
21
22
22
---
23
23
@@ -126,7 +126,7 @@ Testing Rich Presence is quick:
126
126
- Return to your game to see authentication was successful
127
127
- Check out your profile in Discord!
128
128
129
-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-basic.webp" alt="Rich Presence with details and state set" />
129
+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-basic.webp" alt="Rich Presence with details and state set" style={{width: "50%", height: "auto"}} />
130
130
131
131
---
132
132
@@ -245,7 +245,7 @@ Timers work great for:
245
245
- Showing the length of a speedrun attempt
246
246
- Showing how long a competitive match has been fought in
247
247
248
-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-timestamp-elapsed.webp" alt="Rich Presence with an elapsed time counting up" />
248
+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-timestamp-elapsed.webp" alt="Rich Presence with an elapsed time counting up" style={{width: "50%", height: "auto"}} />
249
249
250
250
### Countdown Timer (Time Remaining)
251
251
@@ -284,7 +284,7 @@ Countdown timers work great for:
284
284
- Counting down the time until an event starts
285
285
- Showing tense moments like challenges with a time limit or a boss fight
286
286
287
-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-timestamp-countdown.webp" alt="Rich Presence with a countdown timer counting down" />
287
+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-timestamp-countdown.webp" alt="Rich Presence with a countdown timer counting down" style={{width: "50%", height: "auto"}} />
288
288
289
289
---
290
290
@@ -350,9 +350,9 @@ Activity->SetAssets(Assets);
350
350
351
351
</CodeGroup>
352
352
353
-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-images.webp" alt="Rich Presence with images set" />
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-images-tooltip.webp" alt="Rich Presence with images set that have tooltips on hover" />
355
+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-images-tooltip.webp" alt="Rich Presence with images set that have tooltips on hover" style={{width: "50%", height: "auto"}} />
356
356
357
357
### Using External URLs
358
358
@@ -547,7 +547,7 @@ Unlike the other Rich Presence fields, you can’t see buttons on your own Rich
547
547
548
548
</Tip>
549
549
550
-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-buttons.webp" alt="Rich Presence with buttons to a game store and the game's community" />
550
+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-buttons.webp" alt="Rich Presence with buttons to a game store and the game's community" style={{width: "60%", height: "auto"}} />
551
551
552
552
---
553
553
@@ -605,7 +605,7 @@ Activity->SetParty(Party);
605
605
606
606
This displays as "In Lobby (1 of 4)", instantly communicating that this player has created a lobby and 3 more friends can join them.
607
607
608
-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-party.webp" alt="Rich Presence showing the player in a party of 4" />
608
+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-party.webp" alt="Rich Presence showing the player in a party of 4" style={{width: "50%", height: "auto"}} />
609
609
610
610
### Setting Up Invites
611
611
@@ -689,7 +689,7 @@ When using invites with Rich Presence the join button will take precedence over
689
689
690
690
Combining game invites with lobbies in the Social SDK allows players to join their friends both through your game and through Rich Presence in Discord. For multiplayer games this is huge! Your future players are already on Discord and they can now join their friends directly through invites or ask to join friends without even launching the game. For a complete implementation guide of lobbies and invites using the Social SDK see [Managing Game Invites](/developers/discord-social-sdk/development-guides/managing-game-invites) and [Managing Lobbies](/developers/discord-social-sdk/development-guides/managing-lobbies).
691
691
692
-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-invite.webp" alt="Rich Presence with invites enabled showing the join button" />
692
+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-invite.webp" alt="Rich Presence with invites enabled showing the join button" style={{width: "50%", height: "auto"}} />
0 commit comments