(1.7 Beta 2) AddTrackables does not seem to be working
Posted: Fri Nov 14, 2014 8:37 am
In the 1.7 beta2, calling AddTrackables after LoadTrackable for multiple .tra files does not load all the files. Only the first file seems to get loaded.
More detail:
Assume I have 3 trackables files each containing a single rigid body.
rigidbody1.tra
rigidbody2.tra
rigidbody3.tra
In version 1.5, I was able to do this (pseudo-code):
And this would load all 3 rigid bodies.
In version 1.7 beta 2, I make this same set of calls and only rigidbody1 gets loaded.
Has something change with this API call? This breaks a lot of existing code I have in my project.
-Jeff Weber
More detail:
Assume I have 3 trackables files each containing a single rigid body.
rigidbody1.tra
rigidbody2.tra
rigidbody3.tra
In version 1.5, I was able to do this (pseudo-code):
Code: Select all
TT_LoadTrackables("rigidbody1.tra")
TT_AddTrackables("rigidbody2.tra")
TT_AddTrackables("rigidbody3.tra")
In version 1.7 beta 2, I make this same set of calls and only rigidbody1 gets loaded.
Has something change with this API call? This breaks a lot of existing code I have in my project.
-Jeff Weber