Difference between revisions of "love.isVersionCompatible"
m |
m |
||
Line 1: | Line 1: | ||
{{newin|[[0.10.0]]|100|type=function}} | {{newin|[[0.10.0]]|100|type=function}} | ||
− | Gets | + | Gets whether the given version is compatible with the current running version of LÖVE. |
== Function == | == Function == | ||
Line 8: | Line 8: | ||
</source> | </source> | ||
=== Arguments === | === Arguments === | ||
− | {{param|string|version|The version (for example | + | {{param|string|version|The version to check (for example <code>'11.3'</code> or <code>'0.10.2'</code>).}} |
=== Returns === | === Returns === | ||
− | {{param|boolean|compatible| | + | {{param|boolean|compatible|Whether the given version is compatible with the current running version of LÖVE.}} |
== Function == | == Function == | ||
Line 20: | Line 20: | ||
</source> | </source> | ||
=== Arguments === | === Arguments === | ||
− | {{param|number|major|The major version | + | {{param|number|major|The major version to check (for example <code>11</code> for 11.3 or <code>0</code> for 0.10.2).}} |
− | {{param|number|minor|The minor version | + | {{param|number|minor|The minor version to check (for example <code>3</code> for 11.3 or <code>10</code> for 0.10.2).}} |
− | {{param|number|revision|The revision version | + | {{param|number|revision|The revision of version to check (for example <code>0</code> for 11.3 or <code>2</code> for 0.10.2).}} |
=== Returns === | === Returns === | ||
− | {{param|boolean|compatible| | + | {{param|boolean|compatible|Whether the given version is compatible with the current running version of LÖVE.}} |
== See Also == | == See Also == | ||
Line 32: | Line 32: | ||
* [[love.getVersion]] | * [[love.getVersion]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description=Gets | + | {{#set:Description=Gets whether the given version is compatible with the current running version of LÖVE.}} |
== Other Languages == | == Other Languages == | ||
{{i18n|love.isVersionCompatible}} | {{i18n|love.isVersionCompatible}} |
Latest revision as of 10:40, 30 July 2021
Available since LÖVE 0.10.0 |
This function is not supported in earlier versions. |
Gets whether the given version is compatible with the current running version of LÖVE.
Contents
Function
Synopsis
compatible = love.isVersionCompatible( version )
Arguments
string version
- The version to check (for example
'11.3'
or'0.10.2'
).
Returns
boolean compatible
- Whether the given version is compatible with the current running version of LÖVE.
Function
Synopsis
compatible = love.isVersionCompatible( major, minor, revision )
Arguments
number major
- The major version to check (for example
11
for 11.3 or0
for 0.10.2). number minor
- The minor version to check (for example
3
for 11.3 or10
for 0.10.2). number revision
- The revision of version to check (for example
0
for 11.3 or2
for 0.10.2).
Returns
boolean compatible
- Whether the given version is compatible with the current running version of LÖVE.
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info