user1799171
user1799171

Reputation: 579

Drawing path in Project tango augmented reality

Explored Augmented reality using project-tango, which locates the 3D objects exactly in a particular position in the real world. While navigating to that object or nearing that object a pathway should be overlaid to that object as shown in the image below enter image description here

This arrow spreads on the floor(using depth) while walking with the device. Project tango has some 3D Models which extends Object3D. I don't think those models will help to do this. Is there any way or library to get it drawn?

Upvotes: 2

Views: 458

Answers (1)

Jethro
Jethro

Reputation: 3329

Old post, but answering for any future visitors (:

There are now examples for ExperimentalFloorFinding which shows you how to get the floor position from the point cloud data. Combined with Jasons suggestion for loading .obj, or with calling Instantiate() on a prefab, you should be able to find the position and draw the object.

Upvotes: 1

Related Questions