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
When storing an atom and then immediately loading an atom, it is not shown as loaded but instead still displays as stored.
Minimal example to reproduce:
atom (50, 50) atom
@+ store atom
@+ load atom
@+ move (100, 100) atom
This is due to the atom-state being set to stored and loaded at the same time in the timeline, as changing the state during store is done at the end of the store, and changing the state during load is done at the start of the load, which are the same time here.
The text was updated successfully, but these errors were encountered:
When storing an atom and then immediately loading an atom, it is not shown as loaded but instead still displays as stored.
Minimal example to reproduce:
This is due to the atom-state being set to stored and loaded at the same time in the timeline, as changing the state during
store
is done at the end of thestore
, and changing the state duringload
is done at the start of theload
, which are the same time here.The text was updated successfully, but these errors were encountered: