- Source
Extends
Members
(protected) _enable :boolean
启用插件
true: 启用插件, false: 不启用插件
Type:
- boolean
- Inherited From
- Default Value
- true
- Source
(protected) _live2d :ULive2dController
live2d 上下文
插件 live2d 上下文, 用于获取对应的数据
Type:
- Inherited From
- Source
(protected) _name :string
插件名称
插件名称必须是唯一的, 如果有重复的名称, 则后面的插件将不会安装
Type:
- string
- Overrides
- Default Value
- 'quit'
- Source
(protected) _priority :number
优先级
插件优先级, 在安装插件是会按照优先级依次执行
Type:
- number
- Overrides
- Default Value
- 0
- Source
(protected) _quit :HTMLElement
关闭按钮元素
用于关闭看板娘的元素
Type:
- HTMLElement
- Source
(protected) _show :HTMLElement
打开按钮元素
用于打开看板娘的元素
Type:
- HTMLElement
- Source
(readonly) name :string
创建名称
插件名称必须是唯一的, 如果有重复的名称, 则后面的插件将不会安装
Type:
- string
- Inherited From
- Source
(readonly) priority :number
优先级
插件优先级, 在安装插件是会按照优先级依次执行
Type:
- number
- Inherited From
- Source
Methods
hiddenLive2d()
隐藏 live2d
在点击关闭按钮元素时隐藏 live2d 舞台
- Source
install(live2d) → {void}
安装插件
在安装插件时需要调用的函数, 一般用于初始化以及事件绑定等等
Parameters:
Name | Type | Description |
---|---|---|
live2d | ULive2dController | live2d 上下文 |
- Overrides
- Source
Returns:
- Type:
- void
isEnable() → {boolean}
是否启用插件
根据相关条件判断插件是否启用
- Inherited From
- Source
Returns:
true: 启用
- Type:
- boolean
isRight() → {boolean}
判断显示按钮的左右位置
判断看板娘的显示按钮是覆盖在右边还是左边
- Source
Returns:
true 和 false
- Type:
- boolean
showLive2d()
显示 live2d
在点击关闭按钮元素时显示 live2d 舞台
- Source
uninstall(live2d) → {void}
卸载插件
在卸载插件时需要调用的函数, 一般用于销毁数据以及事件解绑等等
Parameters:
Name | Type | Description |
---|---|---|
live2d | ULive2dController | live2d 上下文 |
- Overrides
- Source
Returns:
- Type:
- void