# Prop: handsfree.data

This property contains all the data for all the active models and is updated on every frame. Please see the individual model pages to see what data is available for each.

Usually you'll only want to access this property directly when you need it outside of a plugin, like as a result of a user event such as a click or other browser event.

# Example

const handsfree = new Handsfree({weboji: true, handpose: true, hands: true})

document.addEventListener('someEvent', (event) => {
  console.log(handsfree.data.weboji, handsfree.data.handpose, handsfree.data.hands)
})

# See Also:

Debugger