@rpgjs/common 4.0.0-rc.6 → 4.0.0-rc.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/lib/AbstractObject.d.ts +21 -21
- package/lib/AbstractObject.js +21 -21
- package/package.json +4 -4
- package/src/AbstractObject.ts +21 -21
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# 4.0.0-rc.
|
|
6
|
+
# 4.0.0-rc.7 (2023-08-21)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @rpgjs/common
|
|
9
9
|
|
package/lib/AbstractObject.d.ts
CHANGED
|
@@ -166,27 +166,27 @@ export declare class AbstractObject {
|
|
|
166
166
|
*
|
|
167
167
|
* Example of returns:
|
|
168
168
|
*
|
|
169
|
-
```ts
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
169
|
+
* ```ts
|
|
170
|
+
* {
|
|
171
|
+
* tiles: [
|
|
172
|
+
* {
|
|
173
|
+
* id: 0,
|
|
174
|
+
* terrain: [],
|
|
175
|
+
* probability: null,
|
|
176
|
+
* properties: [Object],
|
|
177
|
+
* animations: [],
|
|
178
|
+
* objectGroups: [],
|
|
179
|
+
* image: null,
|
|
180
|
+
* gid: 1
|
|
181
|
+
* }
|
|
182
|
+
* ],
|
|
183
|
+
* hasCollision: false,
|
|
184
|
+
* isOverlay: undefined,
|
|
185
|
+
* objectGroups: [],
|
|
186
|
+
* isClimbable: undefined,
|
|
187
|
+
* tileIndex: 93
|
|
188
|
+
* }
|
|
189
|
+
* ```
|
|
190
190
|
*
|
|
191
191
|
* @title Get Tile
|
|
192
192
|
* @since 3.0.0-beta.4
|
package/lib/AbstractObject.js
CHANGED
|
@@ -308,27 +308,27 @@ export class AbstractObject {
|
|
|
308
308
|
*
|
|
309
309
|
* Example of returns:
|
|
310
310
|
*
|
|
311
|
-
```ts
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
311
|
+
* ```ts
|
|
312
|
+
* {
|
|
313
|
+
* tiles: [
|
|
314
|
+
* {
|
|
315
|
+
* id: 0,
|
|
316
|
+
* terrain: [],
|
|
317
|
+
* probability: null,
|
|
318
|
+
* properties: [Object],
|
|
319
|
+
* animations: [],
|
|
320
|
+
* objectGroups: [],
|
|
321
|
+
* image: null,
|
|
322
|
+
* gid: 1
|
|
323
|
+
* }
|
|
324
|
+
* ],
|
|
325
|
+
* hasCollision: false,
|
|
326
|
+
* isOverlay: undefined,
|
|
327
|
+
* objectGroups: [],
|
|
328
|
+
* isClimbable: undefined,
|
|
329
|
+
* tileIndex: 93
|
|
330
|
+
* }
|
|
331
|
+
* ```
|
|
332
332
|
*
|
|
333
333
|
* @title Get Tile
|
|
334
334
|
* @since 3.0.0-beta.4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rpgjs/common",
|
|
3
|
-
"version": "4.0.0-rc.
|
|
3
|
+
"version": "4.0.0-rc.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
"author": "Samuel Ronce",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@rpgjs/tiled": "^4.0.0-rc.
|
|
19
|
-
"@rpgjs/types": "^4.0.0-rc.
|
|
18
|
+
"@rpgjs/tiled": "^4.0.0-rc.7",
|
|
19
|
+
"@rpgjs/types": "^4.0.0-rc.7",
|
|
20
20
|
"rbush": "^3.0.1",
|
|
21
21
|
"rxjs": "^7.8.0",
|
|
22
22
|
"sat": "^0.9.0",
|
|
23
23
|
"workerpool": "^6.4.0"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "480f57560a44369f589e08a2d60db10e95a37d51",
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"typescript": "^5.0.4"
|
|
28
28
|
},
|
package/src/AbstractObject.ts
CHANGED
|
@@ -351,27 +351,27 @@ export class AbstractObject {
|
|
|
351
351
|
*
|
|
352
352
|
* Example of returns:
|
|
353
353
|
*
|
|
354
|
-
```ts
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
354
|
+
* ```ts
|
|
355
|
+
* {
|
|
356
|
+
* tiles: [
|
|
357
|
+
* {
|
|
358
|
+
* id: 0,
|
|
359
|
+
* terrain: [],
|
|
360
|
+
* probability: null,
|
|
361
|
+
* properties: [Object],
|
|
362
|
+
* animations: [],
|
|
363
|
+
* objectGroups: [],
|
|
364
|
+
* image: null,
|
|
365
|
+
* gid: 1
|
|
366
|
+
* }
|
|
367
|
+
* ],
|
|
368
|
+
* hasCollision: false,
|
|
369
|
+
* isOverlay: undefined,
|
|
370
|
+
* objectGroups: [],
|
|
371
|
+
* isClimbable: undefined,
|
|
372
|
+
* tileIndex: 93
|
|
373
|
+
* }
|
|
374
|
+
* ```
|
|
375
375
|
*
|
|
376
376
|
* @title Get Tile
|
|
377
377
|
* @since 3.0.0-beta.4
|