What is componentOccurence in the wayfinding widget and how do I programmatically access it?
If I drag a wayfinder way point onto a part, it will give me the sbom id of that part as componentOccurence . How do I access that programmatically assuming it is the 1st waypoint? The helpcenter says the property is componentOccurence
https://support.ptc.com/help/vuforia/studio/en/#page/Studio_Help_Center%2FWidgetWaypoint.html%23
but none of these have worked:
$scope.view.wdg['wayfinder-1'].waypointsData[0].componentOccurence
$scope.view.wdg['wayfinder-1'].[0].componentOccurence
$scope.view.wdg['wayfinder-1'].componentOccurence
$scope.getWidgetProp("waypoint-1", "componentOccurence")
Secondly, if I can set componentOccurence programmatically, do I need to have x, y, and z data set to use the waypoint?

