Support for Wikitude Software Development Kit and tools is coming to an end. All the details can be found here. Kindly note that no new topics can be started on the forum from 21.09.2023. Also, some of the FAQs here (especially license related ones) might become inaccurate.
Hi, I'm new in wikitude, I need show a label and a image, well the image is easy to show but still I can't
this is my code
var label = new AR.Label("AUX AUX AUX", 100, { offsetY : 1, onClick : function() { label.text += "CLICK " }, verticalAnchor : AR.CONST.VERTICAL_ANCHOR.TOP, opacity : 0.1 }); var imgOne = new AR.ImageResource("assets/imageOne.png"); var overlayOne = new AR.ImageDrawable(imgOne, 1, { translate: { x:-0.15 } }); var pageOne = new AR.ImageTrackable(this.tracker, "*", { drawables: { cam: [label, overlayOne] }, onImageRecognized: this.removeLoadingBar, onError: function(errorMessage) { alert(errorMessage); } });},
Claudia Diaz Ramos
Hi, I'm new in wikitude, I need show a label and a image, well the image is easy to show but still I can't
this is my code