File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ shared: &shared
7
7
pair : ' setElementPosition'
8
8
description : |
9
9
This function allows you to retrieve the position coordinates of an element. This can be any real world element, including:
10
+
10
11
- [[player|Players]]
11
12
- [[vehicle|Vehicles]]
12
13
- [[object|Objects]]
Original file line number Diff line number Diff line change 2
2
{% if function.type_name == 'shared' %}
3
3
< div class ="function-type-title " style ="color: #7575ff; "> Shared function</ div >
4
4
< h1 style ="border-bottom: 3px solid #7575ff; padding-bottom: 0.1em; "> {{ function.name }}</ h1 >
5
- < p style =" margin-top: 1em; " > {{ function['shared'].description_html }}</ p >
5
+ {{ function['shared'].description_html }}
6
6
{% elif function.type_name == 'client' %}
7
7
< div class ="function-type-title " style ="color: #FF0000; "> Client-side function</ div >
8
8
< h1 style ="border-bottom: 3px solid #FF0000; "> {{ function.name }}</ h1 >
9
- < p style =" margin-top: 1em; " > {{ function['client'].description_html }}</ p >
9
+ {{ function['client'].description_html }}
10
10
{% elif function.type_name == 'server' %}
11
11
< div class ="function-type-title " style ="color: #FF7F00; "> Server-side function</ div >
12
12
< h1 style ="border-bottom: 3px solid #FF7F00; "> {{ function.name }}</ h1 >
13
- < p style =" margin-top: 1em; " > {{ function['server'].description_html }}</ p >
13
+ {{ function['server'].description_html }}
14
14
{% endif %}
15
15
16
16
<!-- Syntax -->
You can’t perform that action at this time.
0 commit comments