Namespace: Lens.Session

Simple, non-persistant key-value store. Session is reactive, so it can be used in conjunction with Lens.Deps, particularly Lens.Deps.autorun.

Static Methods

Lens.Session.get(key) ARCore/session.js, line 36

Gets the value of key.

Argument Type Description
key String

Lens.Session.set(key, value) ARCore/session.js, line 21

Sets key to value.

Argument Type Description
key String
value Object