Search found 146 matches

by 3DV
Fri Oct 23, 2020 8:58 pm
Forum: Pano2VR general
Topic: Oculus Go or Quest for Virtual Tours
Replies: 5
Views: 4063

Re: Oculus Go or Quest for Virtual Tours

Good idea! For an example of what using Oculus VR hardware bound to a Facebook account means, see attached image below. Pico is only focussed on selling hardware, and not on harvesting and selling user/business data. They also allow much more control of the VR hardware: you can have a real kiosk mod...
by 3DV
Fri Oct 23, 2020 7:01 pm
Forum: Pano2VR general
Topic: Oculus Go or Quest for Virtual Tours
Replies: 5
Views: 4063

Re: Oculus Go or Quest for Virtual Tours

In short: the Oculus Go is discontinued, the Quest 2 has much higher resolution and currently the Quest 2 has a price that is close to what the Go costed, so I'd choose the Quest 2 even if you won't use the 6 DOF. But if you're not focussing on Oculus alone, or if you don't want the Facebook integra...
by 3DV
Wed Oct 21, 2020 1:19 pm
Forum: Pano2VR general
Topic: Customizing URL
Replies: 4
Views: 2486

Re: Customizing URL

You can leave out the index.html part of an URL when it points to a folder instead of a file and that folder contains the index.html file. Your browser will then automatically find the index.html. For example: https://www.mywebsite.com/tours/tourA/index.html can be accessed with https://www.mywebsit...
by 3DV
Sun Oct 18, 2020 5:31 pm
Forum: Pano2VR general
Topic: offline virtual tour
Replies: 3
Views: 2159

Re: offline virtual tour

In the config.xml file you have to change the 'id' to your own app name, for example: com.mybusiness.mysecondapp If the id of your second app is the same as your first app and the signature is not the same, your device will reject the installation of the app. If you want to update an existing app, y...
by 3DV
Thu Sep 24, 2020 11:26 pm
Forum: Pano2VR general
Topic: Feature Request - Copy panos from one project to another
Replies: 2
Views: 2095

Re: Feature Request - Copy panos from one project to another

I think you could simply use the complete/big tour project and modify the skin to hide the navigational hotspots if you want to use the panoramas as individual panoramas.

With direct node access a specific panorama of the tour can be linked to directly from the 3rd party navigation.
by 3DV
Wed Aug 12, 2020 9:39 am
Forum: Pano2VR general
Topic: I hope to add a way to merge the P2VR format with the imported pictures
Replies: 2
Views: 1888

Re: I hope to add a way to merge the P2VR format with the imported pictures

You can use: File > Save with Assets..
Make sure to use a new folder outside of your current project folder for this.
by 3DV
Wed Jul 08, 2020 11:10 pm
Forum: Pano2VR general
Topic: Dedicated iPhone Cardboard Build
Replies: 12
Views: 16753

Re: Dedicated iPhone Cardboard Build

iOS will block the gyro if the website is not using https://, so the gyro will not work with sites using http://
This is regardless of which browser/settings you're using, the iOS overrides this.
by 3DV
Wed Jul 08, 2020 1:28 pm
Forum: Pano2VR general
Topic: I need you to give me the basics.
Replies: 4
Views: 2350

Re: I need you to give me the basics.

If you want to move the panorama while dragging over the image you have to set Click Mode to None. If you want the image to popup when clicking on it, you could create a polygon hotspot over the image and add a skin element to open an image. This hotspot doesn't respond to dragging, it will only be ...
by 3DV
Wed Jul 08, 2020 11:57 am
Forum: Pano2VR general
Topic: [Solved] Multiple patches
Replies: 2
Views: 1847

Re: Multiple patches

You can add the patch in the Master Node.
In the menu choose: Tour > Edit Master Node
by 3DV
Sat Jul 04, 2020 1:52 pm
Forum: Pano2VR general
Topic: TV-Screen with program selection (remote control)
Replies: 6
Views: 3601

Re: TV-Screen with program selection (remote control)

Of course, much more convenient/flexible, thanks!
by 3DV
Fri Jul 03, 2020 4:10 pm
Forum: Pano2VR general
Topic: Countdown Clock For Hotspot Visibilty
Replies: 9
Views: 34481

Re: Countdown Clock For Hotspot Visibilty

The script example was to add the <script> into the index.html. To use it in a Text element with 'Evaluate' you need to use something like below (untested), so without <script> but with 'javascript:' javascript:""; // Set the date we're counting down to var countDownDate = new Date("J...
by 3DV
Fri Jul 03, 2020 10:28 am
Forum: Pano2VR general
Topic: TV-Screen with program selection (remote control)
Replies: 6
Views: 3601

Re: TV-Screen with program selection (remote control)

I realize there was a mistake in my example, it should be without the }) at the end: javascript:""; pano.setMediaVisibility("video01",1); pano.setMediaVisibility("video02",0); Also, when 'Evaluate' is checked this JavaScript will be executed when the skin is loaded. Ins...
by 3DV
Thu Jul 02, 2020 1:28 pm
Forum: Pano2VR general
Topic: TV-Screen with program selection (remote control)
Replies: 6
Views: 3601

Re: TV-Screen with program selection (remote control)

Have you tried to control the visibility using Javascript? You can add Javascript in the text field of a text item and check 'Evaluate' For example: javascript:""; pano.setMediaVisibility("video01",0); pano.setMediaVisibility("video02",1); }); More info about the Javasc...
by 3DV
Tue Jun 09, 2020 9:18 am
Forum: Pano2VR general
Topic: Countdown Clock For Hotspot Visibilty
Replies: 9
Views: 34481

Re: Countdown Clock For Hotspot Visibilty

You could use JavaScript for the countdown timer like this: https://www.w3schools.com/howto/howto_js_countdown.asp And edit the JavaScript function to send the 'distance' and the text string to Pano2VR custom variables with this: https://ggnome.com/doc/javascript-api/ For example: In your skin add t...