@leafer/event 1.9.8 → 1.9.10

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.
Files changed (2) hide show
  1. package/package.json +6 -6
  2. package/src/Eventer.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leafer/event",
3
- "version": "1.9.8",
3
+ "version": "1.9.10",
4
4
  "description": "@leafer/event",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -22,12 +22,12 @@
22
22
  "leaferjs"
23
23
  ],
24
24
  "dependencies": {
25
- "@leafer/decorator": "1.9.8",
26
- "@leafer/math": "1.9.8",
27
- "@leafer/data": "1.9.8",
28
- "@leafer/platform": "1.9.8"
25
+ "@leafer/decorator": "1.9.10",
26
+ "@leafer/math": "1.9.10",
27
+ "@leafer/data": "1.9.10",
28
+ "@leafer/platform": "1.9.10"
29
29
  },
30
30
  "devDependencies": {
31
- "@leafer/interface": "1.9.8"
31
+ "@leafer/interface": "1.9.10"
32
32
  }
33
33
  }
package/src/Eventer.ts CHANGED
@@ -19,7 +19,7 @@ export class Eventer implements IEventer {
19
19
  public __hasLocalEvent?: boolean
20
20
  public __hasWorldEvent?: boolean
21
21
 
22
- public syncEventer?: IEventer
22
+ public syncEventer?: IEventer // 同步触发一样事件的元素
23
23
 
24
24
  public set event(map: IEventParamsMap) { this.on(map) }
25
25