easter-egg-quest 1.0.6 → 1.0.8
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.
|
@@ -57,6 +57,9 @@ export declare class ThreeRenderer {
|
|
|
57
57
|
private _collectFlashOpacity;
|
|
58
58
|
private _collectShake;
|
|
59
59
|
private _collectCamBaseZ;
|
|
60
|
+
private _finaleInteractive;
|
|
61
|
+
private _finaleDragTarget;
|
|
62
|
+
private _finalePausedRotation;
|
|
60
63
|
constructor(config: ResolvedConfig);
|
|
61
64
|
/** Set callback for when user completes long-press collect. */
|
|
62
65
|
onCollectEgg(cb: (index: number) => void): void;
|
|
@@ -132,6 +135,8 @@ export declare class ThreeRenderer {
|
|
|
132
135
|
private _onTouchMoveCapture;
|
|
133
136
|
private _cancelLongPress;
|
|
134
137
|
private _worldToScreen;
|
|
138
|
+
/** Check if pointer is near any active egg (interactive or finale). */
|
|
139
|
+
private _isPointerNearAnyEgg;
|
|
135
140
|
private _screenToWorld;
|
|
136
141
|
private _animate;
|
|
137
142
|
private _updateEggs;
|
package/package.json
CHANGED