Post

Replies

Boosts

Views

Activity

Multiple notifications make entities crazy
Hello,If I send multiple notifications to trigger animations, the entities become crazy. They change their positions and rotations in a inproperly way. They work fine one by one. Well I tried to stop any animations before each .post(), but AncorEntity.availableAnimations is 0, ModelEntity.availableAnimations is 0 too, so AncorEntity.stopAllAnimations(recursive: true) is not working. Please any ideas.
0
0
477
May ’20
Map size for MapKit JS on mobile
Hello, This code works fine for desktop, but it's very difficult to display user location, map type controls for mobile. <style> #map { width: 100%; height: calc(100vh - 132px); } </style> The map's existence depends on the height property only. The controls depend on the width one. Although the algorithm is not clear. I see that the width must be more or equal to display width. It works for portrait, but not for landscape. <style> #map { position: absolute; top: 58px; left: 0px; width: calc(100vw); height: calc(100vh - 132px); } </style> How to get stable appearance of the controls for any cases? I used iPhone SE 1.
1
0
548
Jul ’21