Vuforia Studio
Recently active
Hello, I am a beginner using Vuforia Studio and Creo Illustrate, I usually use 3ds Max. So for learning I wanted to create an easy example: Create a box, that opens its lid when clicking on it. Not far in I already bumped against several walls, maybe more experienced people here can give me a hint or two: - Box and lid are simple polygon objects, the pivot of the lid is placed correctly at the hinge in 3ds Max, I have animated the lid to open, they have Standard materials, no textures - I used FBX as an export format, default AME settings - Vuforia Studio imports the geometry and the basic materials, animation is unfortunately ignored (feature request!) - So I learned the only ways for animation is cumbersome javascript or Creo Illustrate. So I installed Creo and new problems arise: The pivot point of the lid is ignored, it is always at the center. I see the button for changing it manually, but it does not do anything. I could not change the pivot in creo. How does this work? It is qui
Vuforia Studio New Scan widget to scan barcodes and QR codes (Mobile and 2D eyewear) Support for Creo Illustrate 5.1 sequences NOTE: Creo Illustrate 5.1 is now available with the Vuforia Studio Free Trial Bug fixes and minor improvements Vuforia View Barcode scanning support (all mobile platforms and 2D Eyewear) New tracking indicator for Image Targets Bug fixes and minor improvements Experience Service (On-premises) Ability to install as a non-root user on Linux Ability to retrieve the number of public views using an API call Bug fixes and minor improvements
I would like to start a new trial version for my trainee but it doesn't work. I filled all the field but nothing happen next. I don't receive any mail to confirm the registration. Could you help me please?
Do you have experience with PTC Vuforia? PTC needs your help. We are recruiting an exclusive group of customers, to guide the future online experience of Vuforia and Augmented Reality (AR). This working group is part this PTC Community. Here's a few things this group will engage in: Share your working practices and experience as it relates to Vuforia and AR Define and capture use cases, expectations and requirements, along with expressing its business value Evaluate and co-design new concepts and solutions Request to join the group >> Questions or comments? Feel free to send me a message. Thank you! Nalie Lee-Heidt Voice of the Customer / Customer Experience Team nleeheidt@ptc.com
Hello! I am looking for a complete list of all thrown events in Experience Lifecycle. I know that we can use $scope.$on('eventName', callback); To catch specific events and do some stuff with that. For example we know that we can subscribe to: modelLoaded trackingacquired Can someone help me to build this list? Thanks! Adam
SUBJ.
When I create an experience in vuforia studio, all assets & codes are getting saved in c-drive 'documents' folder. 1. How to change the folder path to local drive (D or E) 2. Is it possible to save the entire project in any cloud services so i can access from any computer. Thanks!.
We have finally installed our Experience server on our own infrastructure, however, when I scan one of the thingmarks provided, it still points to, or wants to connect to the other servers. Can anyone give me some assistance on this ?
My purpose is to move the position of the model.I want to move freely.Because it is difficult for mobile terminals, assign that function to the button. . Next, test-code works in the preview. $scope.incPosX = function(){var x;var y;var z;try{ x = parseFloat(tml3dRenderer.GetObject(l_currentSelection).GetWidget().GetLocation().position.x) + 0.005;y = parseFloat(tml3dRenderer.GetObject(l_currentSelection).GetWidget().GetLocation().position.y);z = parseFloat(tml3dRenderer.GetObject(l_currentSelection).GetWidget().GetLocation().position.z); }catch (ex) {$scope.app.params['x']= "error1" + ex;console.warn("Exception 1 in tml3dRenderer()=>"+ex);} try{ tml3dRenderer.setTranslation(l_currentSelection,x,y,z);}catch (ex) {$scope.app.params['y']="error2" + ex;console.warn("Exception 2 in tml3dRenderer)=>"+ex);}} Exception error in tml3dRenderer.GetObject, it do not work. Could you tell me how to solve it? Thanks, Tsubone
Hi, Is it possible to edit/modify the 2D overlay/UI in studio using any IDE. I have developed a web page for my company to view a product in 3D using x3dom. I'm trying to do the same in vuforia studio. I'm finding it very diffcult to create the UI using the given widgets. For example: In my webpage, I used an inline .svg format of attached image in html and added a event listener to an element inside the svg, which allows to click only the white arrows to trigger the event. I'm trying the same in vuforia studio. Is it possible. Thanks!
Hi everyone, I have made the Experience in Vuforia Studio (8.4.0.4300), I set the Experience Service and I published this Experience (Project 2D). Then I have opened the Vuforia View on my OnePlus 6, I set the Experience Service (same as on my project) and when I try to scan the ThingMark I get an error as on the photo below: I also attached the Vuforia View logs from OnePlus 6. I have to mention that the same project works on IPad. The only difference is in the device. What can may cause this error?Thank you in advance.
Hello, I would like to know if there is any reference material where I can look for the elements which I can change in the widgets of vuforia, using SCSS. For example, when I want to change a button I can set position, text color, background color etc. I am having trouble with this because of the texts inside the widgets which don't change like the value display text. Besides I would like to know the easiest ways to do these things which I can find only in a manual.
Vuforia Studio Bug fixes and minor improvements Vuforia View Improved detection and tracking of Model Targets (Mobile) New handling of lost tracking with Spatial Targets on non-ARKit or non-ARCore devices (Mobile) Bug fixes and minor improvements An 8.4.1 version of Experience Service was not released
Can I view the content using vuforia view, which I created in vuforia studio after a 30 days free trial ?Thanks for the reply.
I've a top-assembly with five sub-assemblies, which i added into studio as .pvz file. There I want to play with the sub-assemblies individually (example: a button to change the transparency level of one sub-assembly alone), so I dropped the 'model-item' widget on my model. But it picked only one single part. Converting each sub-asembly into individual .pvz will work, but is there any way to pick a sub-assembly after importing the top level as a single model. Thanks!
Good Afternoon, I am a new user of Vuforia Studio and while I have searched through the various tutorials and found snippets of code here and there, I am unable to locate a comprehensive JavaScript API reference for the environment. Could any of you point me in the right direction? Thanks.
Hello everyone, I have programmed an app, that checks the code, that is scanned and looks for a view that complies to that. Right now, I write a list of the views by hand, but it would be nice to have them in an automaticly generated array. Does anyone know how to get that? //first create an app parameter (e.g. ScannedCode) and bind the scanned value to it. var ScannedVal = $scope.app.params.ScannedCode;var arr = ['Home', 'help','about','users']; //this should be generated automaticlyvar arroutcome = arr.includes(ScannedVal); //checks if ScannedVal is part of the arrayif (ScannedVal!=undefined && arroutcome==true){twx.app.fn.navigate(ScannedVal);} else.... Thanks and greetings whity
I just want to say thanks for all the help i got for this software ! Now move on my next problem ... I'm doing the Fundamentals of AR Development course more precisely the Robot Service Project. I folowed each step - Creating UI with the same ID - Binding everything step by step - Adding javascript as-is but unfortunatly is doesn't work. I verified the code and the selectionSequence Fundtion is not working. ID's are matching. When i select a service the popup stay there and the bottom-nav-grip won't show. Code used (SequenceList fuction work): $scope.setSequenceList = function(){$scope.app.params.sequenceList = [{"display":"Elbow Replacement","value":"app/resources/Uploaded/industrial_robot_1/l-Creo%203D%20-%20ElbowMotorReplacement.pvi"},{"display":"Shoulder Motor","value":"app/resources/Uploaded/industrial_robot_1/l-Creo%203D%20-%20ShoulderReplacement.pvi"}]}$scope.setSequenceList(); $scope.selectSequence = function(){console.log($scope.app);if($scope.a
Hi, I do not have access to the Popup Actions menu so i can use: "Hide from canvas" and "Show on canvas". I found a topic about that problem back to 2017 and the workaround was to resize the width and height to 1px while working and before publishing resizing everything back. Is this my only solution ? Thanks a lot !
Hi, Im doing the "Fundamentals of AR Development" training and im now stuck. At the end of the coffee machine exercise, the trainer try the created app in the PTC kitchen and he was able to rotate/move the object around on the counter no problem but its doesnt work for me and i followed every step. What i'm doing wrong ? Thanks for the help
Hi there, In the post How to select model components in a 3d model without explicit definition of model Items? I noticed that it is possible to manipulate a Component with "PathID" instead of "Model Item Widget". $scope.currentSelection = target + "-" + pathid; // create a component selection e.g. "model-1-/0/0/3/2" But somehow, I couldn't make it work. I use Model Item Widget at first. Which works. (The Model Item Properties Component Occurrence is /0/5 ) $scope.colorRed = function(){ $scope.view.wdg['modelItem-1']['color'] = "rgba(200, 0, 0, 1)"; }; Then I delete the Model Item Widget, and use PathID to identify specific component. But it is not working with a "PathID". $scope.colorRed = function(){ $scope.view.wdg['model-1-/0/5']['color'] = "rgba(200, 0, 0, 1)";}; I really want to make the PathID method work. Any advice would be appreciated. Thanks in advance. ClarK
Failed to auto configure vuforia studio i have also attached log file for the same. Thank you
Hi, I want to add IMAGE Target in Vuforia Studio. Can anyone tell me how to add image target? Ex. If I scan 2D Drawing/Image it have to show us same 3D model.
Just wanted to share this with you: Go to path: C:\Users\[your Username]\AppData\Roaming\VuforiaStudio\studio-download.vuforia.io\node_modules\ves-ar-extension\widgets\twx-mobile-widgets-basics\widgets\ Here you can have a look on how the elements are designed. You can change it via Styles ->Application in the studio, or you can change it in the original file, but than it's changed for all the experiences you make! Also make sure, to create a copy of the original file before you play around. Greetings whity
Hello, How we can configure 10 different user's in academic package of vuforiastudio.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.