Is there a way with the cordova sdk to load two worlds at once? For example I'm using the following code to load a single world when a open function fires.
open(){
varstartupConfiguration:any={
camera_position:"back"
};
WikitudePlugin.loadARchitectWorld(
function(success){
console.log("ARchitect World loaded successfully.");
is there a way so that single world instance has two experiences on it? For example, one for an image and one for an object?
1 Comment
Wikitude Support
said
almost 5 years ago
Hi Joe,
You can only have one 'World' / AR experience active at a time. At the moment you can't have image recognition and object recognition working simultaniously. You'd need to switch between these 2 trackers.
Joe Scotto
Is there a way with the cordova sdk to load two worlds at once? For example I'm using the following code to load a single world when a open function fires.
var startupConfiguration: any = {
camera_position: "back"
};
WikitudePlugin.loadARchitectWorld(
function(success) {
console.log("ARchitect World loaded successfully.");
},
function(fail) {
console.log("Failed to load ARchitect World!");
},
"www/assets/wikitude/" + this.activeCreative + "/index.html",
["geo"],
<JSON>startupConfiguration
);
}
is there a way so that single world instance has two experiences on it? For example, one for an image and one for an object?