GArrows Plugin garrows.xml适用于 Flash 以及 HTML5
插件灵感源自于箭头插件。
以下隐藏内容只提供VIP赞助会员,VIP会员说明请查看置顶文章
如何安装
- 新建krpano默认漫游 (使用 MAKE VTOUR (MULTIRES) droplet.bat)
- 使用krpano的的tour_editor.html创建导航热点,并保存tour.xml文件
- 复制garrows文件夹到plugins文件夹
- 在tour.xml文件中,将skin_hotspotstyle全局替换为skin_hotspotstyle_navigate 以及/或 skin_hotspotstyle_navigate_vertical
- 在tour.xml文件的最后,在</krpano>之前插入
1<include url="plugins/garrows/garrows.xml" /> - 完成!打开tour.html查看效果
使用skin_hotspotstyle_navigate_vertical可允许箭头使用热点的atv数值以V的形式对准垂直方向。
设置 (garrows.xml)
- show_floatingarrow – 显示或隐藏浮动圆形热点
- show_chevrons -显示或隐藏V型箭头
- show_navpoints – 显示或隐藏导航热点
- floatingarrow_autohide – 如果检测不到方向自动隐藏浮动圆形热点
- floatingarrow_sens – 浮动热点在导航热点附近时的敏感度,以度数为单位
- navpoints_putonground – 是否将导航热点放在“地面”上
- navpoints_atv – 如navpoints_putonground为true,是否为导航热点使用atv值
- loadscene_blend – 场景融合方法
- show_contextmenu – 显示或隐藏GArrows右键菜单
- keyboard_control – 启用或屏蔽键盘控制
控制
- 显示或隐藏浮动箭头
12switch(garrows_settings.show_floatingarrow);if(garrows_settings.show_floatingarrow, mousemove(), hidefloatingarrow();); - 启用或关闭浮动箭头自动隐藏
1switch(garrows_settings.floatingarrow_autohide); - 显示或隐藏V型箭头
12switch(garrows_settings.show_chevrons);if(garrows_settings.show_chevrons, addchevrons(), removechevrons(); ); - 显示或隐藏导航热点
123switch(garrows_settings.show_navpoints);for(set(i,0), i LT hotspot.count, inc(i), copy(hs,hotspot[get(i)]);if (hs.style == 'skin_hotspotstyle_navigate' OR hs.style == 'skin_hotspotstyle_navigate_vertical', switch(hotspot[get(i)].visible); ); );
下载地址
以下隐藏内容只提供VIP赞助会员,VIP会员说明请查看置顶文章