mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
cursor image as WS event.
This commit is contained in:
@ -81,14 +81,9 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
|
||||
// TODO: Handle.
|
||||
}
|
||||
|
||||
// TODO: Refactor.
|
||||
protected ['cursor/image']({ payload }: any) {
|
||||
console.log('cursor/image')
|
||||
Vue.set(this.state.control, 'cursor', {
|
||||
uri: payload.Uri,
|
||||
hot_x: payload.Xhot,
|
||||
hot_y: payload.Yhot,
|
||||
})
|
||||
protected [EVENT.CURSOR_IMAGE]({ uri, width, height, x, y }: message.CursorImage) {
|
||||
console.log('EVENT.CURSOR_IMAGE')
|
||||
Vue.set(this.state.control, 'cursor', { uri, width, height, x, y })
|
||||
}
|
||||
|
||||
/////////////////////////////
|
||||
|
Reference in New Issue
Block a user