"undo", "redo" : no action?
How is it possible to add another pano after?
In case of Krpano import, with large pano 15000x7500, it seems that viewmodel and project/preview doesn't run correctly.
With extruded polygon, sometimes, some part of ground are skipped, see screenshot in attachment.
So, following your advice, I producedYou are using the right tool for sure, there are just few limitations that needs to be taken in care :With extruded polygon, sometimes, some part of ground are skipped, see screenshot in attachment.
1.- you can not make polygons bigger than 180º.
2.- you can not draw polygons that intersects them self.
Kind regards
Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »jpdeglet69« (10. September 2019, 11:56)
1) why circle hotspot is not visible?
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!-- automatically add floor-hotspots at scene locations -->
<action name="generate_floor_hotspots" autorun="onstart" scope="local">
set(floorheight, 152.0);
for(set(i,0), i LT style.count, inc(i),
indexoftxt(is_everpano3D_style, get(style[get(i)].name), 'everpano3d_');
if(is_everpano3D_style == 0,
copy(st, style[get(i)]);
addhotspot(calc('floorspot_' + (i+1)), hs);
hs.loadstyle(floorspot);
copy(hs.tx, st.ox);
copy(hs.tz, st.oz);
calc(hs.ty, floorheight + 1.0*st.oy - 1.0);
copy(hs.linkedscene, st.linkedscene);
);
);
</action>
|
ON MOBLE with Compliant browser, in VR mode, (my WebSite is https compliant, so real VR mode is operational)
- no hotspot, no navigation, is navigator pro plugin required
Okay, I will add the code.
![]()
Quellcode
1 2 3 4 5 6 7 8 9 10 11 12 13set(floorheight, 152.0); for(set(i,0), i LT style.count, inc(i), indexoftxt(is_everpano3D_style, get(style[get(i)].name), 'everpano3d_'); if(is_everpano3D_style == 0, copy(st, style[get(i)]); addhotspot(calc('floorspot_' + (i+1)), hs); hs.loadstyle(floorspot); copy(hs.tx, st.ox); copy(hs.tz, st.oz); calc(hs.ty, floorheight + 1.0*st.oy - 1.0); copy(hs.linkedscene, st.linkedscene); ); );
You will dinamically generate the hotspots.
If you would use the code above then in mobile you would also have the hotspots printed. Otherwise if you use the navigator plugin, you can just click around and navigate.ON MOBLE with Compliant browser, in VR mode, (my WebSite is https compliant, so real VR mode is operational)
- no hotspot, no navigation, is navigator pro plugin required
For basic navigation you do not need the Navigator pro License. with the free included in everpano 3D it's enough to navigate around
Kind regards
|
|
Quellcode |
1 |
<include url="depthmap_navigation.xml" /> |