@linear_non/stellar-kit 3.0.2 → 3.0.4
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/core/Application.js +1 -1
- package/core/PageEngine.js +4 -3
- package/package.json +1 -1
package/core/Application.js
CHANGED
package/core/PageEngine.js
CHANGED
|
@@ -165,10 +165,11 @@ export default class PageEngine {
|
|
|
165
165
|
|
|
166
166
|
this.scroll.current = nextScroll
|
|
167
167
|
this.scroll.direction = delta > 0 ? "down" : "up"
|
|
168
|
-
|
|
168
|
+
|
|
169
169
|
this.mouse.x = mouse.x
|
|
170
170
|
this.mouse.y = mouse.y
|
|
171
|
-
|
|
171
|
+
|
|
172
|
+
// Debug.log("ENGINE", "Tick scroll:", this.scroll)
|
|
172
173
|
this.manager.tick?.({
|
|
173
174
|
mouse: this.mouse,
|
|
174
175
|
scroll: this.scroll,
|
|
@@ -241,4 +242,4 @@ export default class PageEngine {
|
|
|
241
242
|
this.smooth = null
|
|
242
243
|
}
|
|
243
244
|
}
|
|
244
|
-
}
|
|
245
|
+
}
|