Skip to content

Commit 2f46a97

Browse files
author
GDevelop documentation CI
committed
Automatic update of the reference pages [skip ci]
1 parent e00b816 commit 2f46a97

File tree

4 files changed

+83
-1
lines changed

4 files changed

+83
-1
lines changed

docs/gdevelop5/extensions/.pages

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ nav:
131131
- Iframe: iframe
132132
- Input Validation: input-validation
133133
- Language: language
134+
- Leaderboard dialog: leaderboard-dialog
134135
- Panel sprite button: panel-sprite-button
135136
- Resource bar (continuous): panel-sprite-continuous-bar
136137
- Slider: panel-sprite-slider

docs/gdevelop5/extensions/a3f/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ This can also be used to rotate bones.
5555
Note that if a child is affected by a playing animation, it will override this change. In that case, please pause the animation.
5656

5757
**😀Change morph target value**
58-
Change morph target values of 3D models.
58+
Change morph target values of 3D objects.
5959
The names of the morph target must be checked in advance using the "🛟Output morph target names" action or a 3D modeling tool.
6060
Note that if a morph target is affected by a playing animation, it will override this change. In that case, please pause the animation.
6161

docs/gdevelop5/extensions/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ Here are listed all the extensions available in GDevelop. The list is divided in
188188
|<img src="https://resources.gdevelop-app.com/assets/Icons/iframe-array-outline.svg" class="extension-icon"></img>|**Iframe**|Create or delete an iframe to embed websites.|[Read more...](/gdevelop5/extensions/iframe)|
189189
|<img src="https://resources.gdevelop-app.com/assets/Icons/Line Hero Pack/Master/SVG/Education and Learning/Education and Learning_education_book_library_search.svg" class="extension-icon"></img>|**Input Validation**|Conditions and expressions to check, sanitize and manipulate strings.|[Read more...](/gdevelop5/extensions/input-validation)|
190190
|<img src="https://resources.gdevelop-app.com/assets/Icons/earth.svg" class="extension-icon"></img>|**Language**|Get the preferred language of the user, set on their browser or device.|[Read more...](/gdevelop5/extensions/language)|
191+
|<img src="https://asset-resources.gdevelop.io/public-resources/Icons/4b89b420c0ed9c540a7f00c5735a31af0db2160679d3fab2170df3681c3ac38c_trophy.svg" class="extension-icon"></img>|**Leaderboard dialog**|Display the player score and allow to submit it to a leaderboard.|[Read more...](/gdevelop5/extensions/leaderboard-dialog)|
191192
|<img src="https://resources.gdevelop-app.com/assets/Icons/Line Hero Pack/Master/SVG/Interface Elements/Interface Elements_interface_ui_button_ok_cta_clock_tap.svg" class="extension-icon"></img>|**Panel sprite button**|A button that can be customized.|[Read more...](/gdevelop5/objects/button) ([reference](/gdevelop5/extensions/panel-sprite-button))|
192193
|<img src="https://asset-resources.gdevelop.io/public-resources/Icons/Glyphster Pack/Master/SVG/Interface Elements/ea06363a57846caab544f536b78a952234b68d4941d41c1577852a1d61aefec3_Interface Elements_interface_ui_loading_progress_bar.svg" class="extension-icon"></img>|**Resource bar (continuous)**|A bar that represents a resource in the game (health, mana, ammo, etc).|[Read more...](/gdevelop5/objects/resource-bar) ([reference](/gdevelop5/extensions/panel-sprite-continuous-bar))|
193194
|<img src="https://asset-resources.gdevelop.io/public-resources/Icons/Line Hero Pack/Master/SVG/UI Essentials/1678c39a3b2bd3df4f82a8a293770db4986a6bcfd3f78e738ddfc86e39176423_UI Essentials_sliders_options.svg" class="extension-icon"></img>|**Slider**|A draggable slider that users can move to select a numerical value.|[Read more...](/gdevelop5/objects/slider) ([reference](/gdevelop5/extensions/panel-sprite-slider))|
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Leaderboard dialog
2+
3+
<img src="https://asset-resources.gdevelop.io/public-resources/Icons/4b89b420c0ed9c540a7f00c5735a31af0db2160679d3fab2170df3681c3ac38c_trophy.svg" class="extension-icon"></img>
4+
Display the player score and allow to submit it to a leaderboard.
5+
6+
**Authors and contributors** to this experimental extension: [D8H](https://gd.games/D8H).
7+
8+
---
9+
10+
Display the player score and allow to submit it to a leaderboard.
11+
12+
!!! tip
13+
Learn [how to install new extensions](/gdevelop5/extensions/search) by following a step-by-step guide.
14+
15+
16+
17+
## Leaderboard dialog
18+
19+
Displays the player score and allows to submit it to a leaderboard.
20+
21+
### Object actions
22+
23+
**Best score**
24+
Change the best score of the object.
25+
26+
**Default player name**
27+
Change the default player name.
28+
29+
**Leaderboard**
30+
Change the leaderboard of the object.
31+
32+
**Score**
33+
Change the score.
34+
35+
**Title**
36+
Change the title of the object.
37+
38+
### Object conditions
39+
40+
**Best score**
41+
Compare the best score of the object.
42+
43+
**Default player name**
44+
Compare the default player name.
45+
46+
**Back button clicked**
47+
Check if the back button of the dialog is clicked.
48+
49+
**Next button clicked**
50+
Check if the next button of the dialog is clicked.
51+
52+
**Restart button clicked**
53+
Check if the restart button of the dialog is clicked.
54+
55+
**Score is submitted**
56+
Check if the score has been sucessfully submitted by the dialog.
57+
58+
**Leaderboard**
59+
Compare the leaderboard of the object.
60+
61+
**Player name**
62+
Compare the player name.
63+
64+
**Score**
65+
Compare the score.
66+
67+
### Object expressions
68+
69+
| Expression | Description | |
70+
|-----|-----|-----|
71+
| `Object.BestScore()` | Return the best score of the object. ||
72+
| `Object.DefaultPlayerName()` | Return the default player name. ||
73+
| `Object.LeaderboardId()` | Return the leaderboard of the object. ||
74+
| `Object.PlayerName()` | Return the player name. ||
75+
| `Object.Score()` | Return the score. ||
76+
77+
78+
---
79+
80+
*This page is an auto-generated reference page about the **Leaderboard dialog** extension, made by the community of [GDevelop, the open-source, cross-platform game engine designed for everyone](https://gdevelop.io/).* Learn more about [all GDevelop community-made extensions here](/gdevelop5/extensions).

0 commit comments

Comments
 (0)