Vuforia Studio
Recently active
Hi, I am a novice developer in Korea.Please understand that I am using a translation app because I am not good at English.Last month, I used chalk a UI(https://admin.vuforiachalk.com/call) in the 2D view of vuforia studio, and it entered the chalk app, but when I recently accessed it again, it came into the chalk download web(https://www.ptc.com/en/products/vuforia/vuforia-chalk)Does anyone have a solution?
Hello PTC Community!Please advise a solution for creating breadcrumbs that have links to different level views.Example: Home../View1..../View2...../View3 Thank you!
This is my first go at writing a script in Vuforia so I would appreciate the help in where I am going wrong. I have about 8 part models and I would like to toggle them on/off with a previous and next button in order to run through a sequence. This is what I have but I'm struggling with tying in the steps to the button functions. // Increment Step when NEXT button is pressed$scope.pressNextButton = function() {currentStep = parseInt($scope.app.params[currentStepParam], 10);if (currentStep < maxStep && !playing) {$scope.app.params[currentStepParam] = currentStep + 1;} else {$scope.show(buttonAnimInProgress);$timeout(function() {$scope.hide(buttonAnimInProgress);}, 2500);}$timeout(function() {currentlyShowingNextButton = $scope.app.params[showNextButtonParam];$scope.hideNextButtons();}, 50);$timeout(function() {if (currentlyShowingNextButton) {$scope.showNextButtons();}}, 2500);}// Return to previous Step when BACK button is pressed$scope.pressBackButton = function()
Hi, I have published the model on one computer, and I worked on the same project on another computer to make a small update. Now, I'm wondering how I can use that updated project and generate the same QR code that was created on the first computer. Any ideas? in vuforia studio @tmclean @gmhydliu @WillP
Hi, Good Afternoon, Can anyone help me regarding changing opacity of all parts of model in Vuforia Studio. Example: If I click on a button opacity of one part should be 1 and rest whole model's opacity should be 0.5 & if I click on another button 2 part's opacity should be 1 and rest whole model's opacity should be 0.5, how can I achieve this? Thanks in Advance.
How do I enable the option described in the PTC Vuforia Studio (Version 9.10.0.5801) error below. Error Building ProjectFile not found with singular glob: C:/Users/dad1031/AppData/Local/Apps/2.0/WYH88825.19R/204Q34TX.ZTJ/vufo..udio_6120a471489601b2_0009.000a_6c10856262b8d2e4/\\metlfs1\Mapped_Drives\AUGMTDREALITY\files\Documents\VuforiaStudio\Projects\TestSave2\css\studio-designtime-vars.scss (if this was purposeful, use `allowEmpty` option)
Hello PTC Community,Please, advise how I can fix the CSS typography appearance in the View app.My problem is that the CSS Typography style (either from "resources/... " or Google link) does not appear on the View app.
Hi, I have some doubts, In 3D eyewear, If I touch the particular part of the model it should be highlighted or it should blink. Can we do that? Any reference model you have, please attach here, it will helps me.
After Publishing the Experience, In Preview sequences are showing, but In HoloLens sequences are Not showing.
I just updated my Vuforia Studio and am not running into this error whenever I preview. I get this pop up: '$ is not a function" and in my log I get "Error saving project $ is not a function TypeError: $ is not a function". This is happening for each of my projects, which all worked yesterday.
Hi PTC Community,Please, advise how I can set CSS for the prebuilt navigation menu tab. Thank you!
Hi,I'm developing an experience in vuforia studio. with multiple animations. So here if user says close, it has to exit from the animation and navigate to vuforia view.So, how can we implement this in Vuforia Studio? For example, if the user is watching an animation and they want to skip or close the experience in Vuforia View, they can say "close" and it will immediately exit the experience and navigate to the Vuforia View scanner. How can we achieve this? @winklmann @nyun @plgoddard
Hi Dear Community,Please advise how I can fix my CSS issue with of the background color for all Views.For some reason, my CSS color appears only on the design view but doesn't show up in the preview.This is how it looks from a design view: background code appears But this is how the same code looks in a preview mode: background doesn't show upI don't understand why background css doesnt appear in a preview /publish mode.Thank you!
Hi,I would like to ask the community if there is a way to orient a 3D arrow following the direction of the camera.I mean, I have already obtained the eyepos, eyedir & eyeup values. I know how to use eyepos, but I don't know how to use eyedir & eyeup values in order to give an arrow the right direction.Currently, what I have built is a test project with 2 views:1) a view used from a mobile device that every second send to Thingworx eyepos values.2) a view used in preview mode on a laptop that gets the eyepos values from Thingworx and gives these values to a 3D moving gauge, simulating the position of the mobile device in the area.But this 3D gauge is in billboard mode, so it's always showing his main face.I would like to transform this billboard gauge into a rotating arrow pointing the direction of the camera. Any ideas?
Hello.I asked the question because I would like to know how to put HTML elements inside a 2D widget. For example, I would like to display an HTML table element in a 2D widget's text area.I am looking forward to your response.
I am doing one project with a checklist. 1 sequence is running; if it is running properly, I can select the next button. If it is not running properly, I have to select the reason, and for that reason, I have to add a comment. How can I add the comment box here?
how to re write this program, if i am click the button then image should blink.$scope.blinkInterval = 0; $scope.blinkImage = function(id) { var current = $scope.view.wdg[id].visible; if (current == undefined) { current = true;} $scope.setWidgetProp(id, "visible", !current); } $scope.startBlink = function() { $scope.blinkInterval = $interval($scope.blinkImage, 1000, 0, true, "3DImage-1"); } $scope.stopBlink = function(id) { $interval.cancel($scope.blinkInterval); } angular.element(document).ready($scope.startBlink);
Hi,Greetings for the day!!! I generated a model target from model generator target app with a pvz file having textures and shadings, but the model target generated does not contains any textures. How can I have the textures exported with the model target. Thanks in Advance Regards,Aditya.
Is there a better way to exchange FILEURL with JS? I was able to change it by creating a global variable and linking it to the file url path, but I wonder if there is a more optimized way? NOW: $scope.app.params.stepPDF = "app/resources/Uploaded/Procedimento1.PNG";
First, I was under the impression that the little JS boxes in Studio were able to hold expressions. Was I wrong? Second, if I wasn't wrong, then I'm guessing that I'm not using the correct syntax for it. To clarify, I am creating a 3D HMD experience with voice commands, and I'm trying to fill in the JS box with the expression below: if ($scope.app.params.ExperienceType != 'Child') { viewCtrl.Start(); } Unfortunately, this isn't having the desired effect and is also causing the Start function to not fire at all. My question is, what syntax do I need to use for the ExperienceType variable? I feel like that is where the problem is, but I'm not sure how to fix it. If it's not that, then what else might it be?
Hello, I'm trying to use hand gesture for Hololens 2, but seems noone of the gestures work. Am I missing something? Thanks in advance
Dear community,in the company we'd like to start an internal process where we want to analyze the machine before building it.So the request I've been asked is to be able to select and show/hide parts of the machine, but dynamically.Our machines gets to be made of millions of parts, so it's not feasible to assign a model-item to each part.I've seen this use case in the help center (http://support.ptc.com/help/vuforia/studio/en/#page/Studio_Help_Center%2Fmetadata%2FMetadata_201_Intro.html%23) and it would basically be the best solution, unless the described Use Case is for a smartphone/tablet and we'd like to make a step forward and have it done in HoloLens.Just as a suggestion, before investing time, is it even possible to adapt that use case?The functions would be:- select a part- highlight a part- be able to select the father in order to also be able to hide assemblies I don't need the search at the moment I think this would be challenging, so this is the best place to ask f
In 3D panel I have placed some buttons, checkbox and labels in order. the button should play on sequence,if i click the first button then show the check box, label and 2nd button, similarly if i click the 2nd button the 2nd checkbox, label and 3rd button should appear and so on. How to do this sequence using js.
I just place 3D panel and some buttons, but i need here scroll options because the 3D panel is too length and far away. how can i do this. if you have any reference files please drop here, it will help us.
In the Hololens project, I would like to perform a click on a model that is located at a distant position.Is it possible to designate distant models using gaze manipulation or other gestures? I would like to achieve the ability to display multiple models in AR and, when clicking on a specific model among them, display the attribute information of the selected model.
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.