You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To repro - run this code and observe the sphere doesn't get removed
fromasyncioimportsleepfromvuerimportVuerfromvuer.schemasimportScene, Box, Plane, Spherecert_file="./cert.pem"key_file="./key.pem"app=Vuer(
host="0.0.0.0",
cert=cert_file,
key=key_file,
queries=dict(
grid=False,
ws='wss://localhost:8012',
),
queue_len=3,
)
@app.spawn(start=True)asyncdefmain(session):
#session.set @ Scene()whileTrue:
session.upsert @ Sphere(key='s', args=[0.5, 20, 20], position=[0, 1, -2], materialType="depth")
awaitsleep(1.0)
# Removing does nothingsession.remove @ 's'# This works! So my work around is to make things small/move them b/c i can't remove#session.upsert @ Sphere(key='s', args=[0.5, 20, 20], position=[0, 1, -3], materialType="depth")awaitsleep(1.0)
The text was updated successfully, but these errors were encountered:
To repro - run this code and observe the sphere doesn't get removed
The text was updated successfully, but these errors were encountered: