我是靠谱客的博主 幸福煎蛋,这篇文章主要介绍krpano相关笔记,现在分享给大家,希望可以做个参考。

1.krpano 关闭默认底部菜单
文件:skin/vtourskin.xml
找到

复制代码
1
2
set(layer[skin_layer].visible, true);

修改为

复制代码
1
2
set(layer[skin_layer].visible, false);

2.krpano 关闭切换场景的左右箭头
文件:skin/vtourskin.xml
1).找到

复制代码
1
2
3
4
5
6
7
<layer name="skin_btn_prev_fs" keep="true" type="container" align="lefttop" x="-50" width="40" height="100%" bgcapture="true" alpha="0.0" enabled="false" capture="false" zorder="2" onclick="skin_nextscene_loop(-1);" onhover="tween(alpha,1.0);" onout="tween(alpha,0.25);" ondown.touch="onhover();" onup.touch="onout();"> <layer name="skin_btn_prev_fs_icon" style="skin_base" crop="0|64|64|64" align="center" scale="0.5" enabled="false" /> </layer> <layer name="skin_btn_next_fs" keep="true" type="container" align="righttop" x="-50" width="40" height="100%" bgcapture="true" alpha="0.0" enabled="false" capture="false" zorder="2" onclick="skin_nextscene_loop(+1);" onhover="tween(alpha,1.0);" onout="tween(alpha,0.25);" ondown.touch="onhover();" onup.touch="onout();"> <layer name="skin_btn_next_fs_icon" style="skin_base" crop="64|64|64|64" align="center" scale="0.5" enabled="false" /> </layer>

修改为

复制代码
1
<layer name="skin_bt

最后

以上就是幸福煎蛋最近收集整理的关于krpano相关笔记的全部内容,更多相关krpano相关笔记内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部