|
9 | 9 | <div class="function-type-title" style="color: {{type_colors[function.type_name]}};">{{ function.type_name|capitalize }} function</div>
|
10 | 10 | <h1 style="border-bottom: 3px solid {{type_colors[function.type_name]}}; padding-bottom: 0.2em;">
|
11 | 11 | <span {% if function.disabled %}style="text-decoration: line-through;"{% endif %}>{{ function.name }}</span>
|
12 |
| - <a class="small-fs" href="#" onclick="copyText('{{ function.name }}', 'copy-{{ function.name }}')"><i class="fa-solid fa-copy"></i> <span id="copy-{{ function.name }}">Copy</span> </a> |
| 12 | + <a class="small-fs" href="#" onclick="copyText('{{ function.name }}', 'copy-{{ function.name }}')"><i class="fa-regular fa-copy"></i> <span id="copy-{{ function.name }}">Copy</span> </a> |
13 | 13 | </h1>
|
14 | 14 |
|
15 | 15 | <!-- Disabled Warning -->
|
@@ -97,7 +97,7 @@ <h3>Pair: <a href="/{{ function[type_name].pair }}">{{ function[type_name].pair
|
97 | 97 | <h2 id="syntax">Syntax <a href="#syntax"><i class="fa-solid fa-link"></i></a></h2>
|
98 | 98 | {% if function.syntaxes.single %}
|
99 | 99 | {% set syntax = function.syntaxes.single %}
|
100 |
| - <div style="padding-left: 1em; margin-top: 1em; border: 1px solid {{ info_color }}; border-radius: 5px;"> |
| 100 | +<div style="padding-left: 1em; margin-top: 1em; border: 1px solid {{ info_color }}; border-radius: 5px;"> |
101 | 101 |
|
102 | 102 | <pre><code class="language-lua">{{ syntax.returns.values_type or 'void' }} {{ function.name }} ( {% for parameter in syntax.arguments.required %}{{ parameter.type }} {{ parameter.name }}{% if not loop.last %}, {% endif %}{% endfor %}{% for parameter in syntax.arguments.optional %}{% if syntax.arguments.required %}, {% endif %}{% if loop.first %}[ {% endif %}{{ parameter.type }} {{ parameter.name }} = {{ parameter.default }}{% if loop.last %} ]{% endif %}{% endfor %} )</code></pre>
|
103 | 103 |
|
@@ -129,12 +129,11 @@ <h3>Returns:</h3>
|
129 | 129 | {% endfor %}
|
130 | 130 | </ul>
|
131 | 131 |
|
132 |
| - </div> |
133 | 132 | {% else %}
|
134 | 133 | {% for type_name in ['server', 'client'] %}
|
135 | 134 | {% set syntax = function.syntaxes[type_name] %}
|
136 | 135 | {% if syntax %}
|
137 |
| - <div style="padding-left: 1em; margin-top: 1em; border: 1px solid {{ type_colors[type_name] }}; border-radius: 5px;"> |
| 136 | +<div style="padding-left: 1em; margin-top: 1em; border: 1px solid {{ type_colors[type_name] }}; border-radius: 5px;"> |
138 | 137 | <h3 style="color: {{ type_colors[type_name] }};">{{ type_name|capitalize }}:</h3>
|
139 | 138 |
|
140 | 139 | <pre><code class="language-lua">{{ syntax.returns.values_type or 'void' }} {{ function.name }} ( {% for parameter in syntax.arguments.required %}{{ parameter.type }} {{ parameter.name }}{% if not loop.last %}, {% endif %}{% endfor %}{% for parameter in syntax.arguments.optional %}{% if syntax.arguments.required %}, {% endif %}{% if loop.first %}[ {% endif %}{{ parameter.type }} {{ parameter.name }} = {{ parameter.default }}{% if loop.last %} ]{% endif %}{% endfor %} )</code></pre>
|
@@ -166,10 +165,36 @@ <h4>Returns:</h4>
|
166 | 165 | <li>{{ item.type }} {{ item.name }}</li>
|
167 | 166 | {% endfor %}
|
168 | 167 | </ul>
|
169 |
| - </div> |
170 | 168 | {% endif %}
|
171 | 169 | {% endfor %}
|
172 | 170 | {% endif %}
|
| 171 | + <!-- OOP Syntax --> |
| 172 | + {% for type_name in ['shared', 'client', 'server'] %} |
| 173 | + {% if function[type_name] %} |
| 174 | + {% if function[type_name].oop %} |
| 175 | + <h3>OOP syntax: <a href="/OOP_Introduction" ><i class="fa-regular fa-circle-question"></i></a></h3> |
| 176 | + {% if function[type_name].oop.note %} |
| 177 | + <p>{{ function[type_name].oop.note }}</p> |
| 178 | + {% endif %} |
| 179 | + <!-- Method or constructor --> |
| 180 | + <ul> |
| 181 | + {% if function[type_name].oop.constructor %} |
| 182 | + <li><strong>Constructor:</strong> <a href="/{{ function[type_name].oop.constructor|lower }}">{{ function[type_name].oop.constructor|capitalize }}</a>(...)</li> |
| 183 | + {% else %} |
| 184 | + {% if function[type_name].oop.static %} |
| 185 | + <li><strong>Method:</strong> <a href="/{{ function[type_name].oop.entity|capitalize }}">{{ function[type_name].oop.entity|capitalize }}</a>.{{ function[type_name].oop.method }}(...)</li> |
| 186 | + {% else %} |
| 187 | + <li><strong>Method:</strong> <a href="/{{ function[type_name].oop.entity|lower }}">{{ function[type_name].oop.entity }}</a>:{{ function[type_name].oop.method }}(...)</li> |
| 188 | + {% endif %} |
| 189 | + {% if function[type_name].oop.variable %} |
| 190 | + <li><strong>Variable:</strong> <a href="/{{ function[type_name].oop.entity|lower }}">{{ function[type_name].oop.entity }}</a>.{{ function[type_name].oop.variable }}</li> |
| 191 | + {% endif %} |
| 192 | + {% endif %} |
| 193 | + </ul> |
| 194 | + {% endif %} |
| 195 | + {% endif %} |
| 196 | + {% endfor %} |
| 197 | +</div> |
173 | 198 |
|
174 | 199 | <!-- Preview Images -->
|
175 | 200 | {% for type_name in ['shared', 'client', 'server'] %}
|
|
0 commit comments