界面
UI模块
介绍
UI模块主要是提供全屏、显示帧率和网络参数等功能,具体功能使用可以参考UI API。
功能使用
UI模块不需要实例化,就能使用其中的方法。
js
// 授权码
const kapi = await KAPI.build('Your Auth Token')
// 加载云流场景服务
const scene = new kapi.Scene('kapi-container', { server: 'Your Service URL' })
// 等待场景加载好
const readyState = await scene.ready()
const ui = new kapi.ui
console.log(ui)
执行全屏功能,比如全屏
:
js
const ui = new kapi.ui
const full = await kapi.ui.showFullscreen()
console.log(full)
同样,可执行退出全屏功能,比如退出全屏
:
js
const ui = new kapi.UI()
const full = await kapi.ui.hideFullscreen()
console.log(full)
提示
不同类库的功能在不断丰富完善