typed-factorio 0.18.0 → 0.19.1
Sign up to get free protection for your applications and to get access to all the features.
- package/Changelog.md +14 -0
- package/generated/builtin-types.d.ts +1 -3
- package/generated/classes.d.ts +5242 -6088
- package/generated/concepts.d.ts +1923 -1205
- package/generated/defines.d.ts +464 -163
- package/generated/events.d.ts +2061 -776
- package/generated/global-objects.d.ts +1 -2
- package/package.json +1 -2
- package/runtime/util.d.ts +12 -12
package/Changelog.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
# v0.19.0
|
2
|
+
|
3
|
+
- Updated to factorio version 1.1.53
|
4
|
+
- Updated to json api version 2
|
5
|
+
- Improved documentation comments
|
6
|
+
|
7
|
+
## Changes
|
8
|
+
|
9
|
+
- `Position`, `PositionArray`, and `PositionTable` have been replaced by `MapPosition`, `MapPositionArray`, and `MapPositionTable` respectively. These are now deprecated and may be removed in a future version.
|
10
|
+
|
11
|
+
# v0.18.1
|
12
|
+
|
13
|
+
- `TechnologyIdentification` now also has a more specific type when read.
|
14
|
+
|
1
15
|
# v0.18.0
|
2
16
|
|
3
17
|
- `ForceIdentification` and `ItemPrototypeIdentification` now have more specific types when read.
|
@@ -3,9 +3,7 @@
|
|
3
3
|
/** @noSelfInFile */
|
4
4
|
|
5
5
|
/**
|
6
|
-
* A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision
|
7
|
-
* numbers, when a function takes a float, the game engine will immediately convert the double-precision number to
|
8
|
-
* single-precision.
|
6
|
+
* A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision numbers, when a function takes a float, the game engine will immediately convert the double-precision number to single-precision.
|
9
7
|
*
|
10
8
|
* {@link https://lua-api.factorio.com/latest/Builtin-Types.html#float View documentation}
|
11
9
|
*/
|