@gamelearn/arcade-components 1.19.0 → 1.19.1

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.
@@ -393,7 +393,8 @@ var DialogComponent = function DialogComponent(_ref) {
393
393
  target.applyQuaternion(camera.quaternion);
394
394
  target.translateX(1.25);
395
395
  var distance = camera.position.distanceTo(target.position);
396
- target.translateY(distance > 70 && !zoomInActor ? 0 : 3);
396
+ var staticDisplay = distance > 70 && !zoomInActor && !showArrowTop;
397
+ target.translateY(staticDisplay || showArrowTop ? 0 : 3);
397
398
  messagePosition.current = {
398
399
  pos: target.position.toArray(),
399
400
  child: head,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@gamelearn/arcade-components",
3
3
  "author": "Gamelearn",
4
4
  "license": "unlicense",
5
- "version": "1.19.0",
5
+ "version": "1.19.1",
6
6
  "main": "dist/index.js",
7
7
  "files": [
8
8
  "dist",