PointerLockControlComponent

This commit is contained in:
liteng 2019-01-23 22:09:31 +08:00
parent 55b5cc4737
commit 5cfe2a52bc
3 changed files with 4 additions and 2 deletions

View File

@ -250,3 +250,4 @@ L_KEY_PAN_SPEED = '按键速度';
L_AUTO_ROTATE = '自动旋转';
L_AUTO_ROTATE_SPEED = '旋转速度';
L_ENABLE_KEYS = '启用按键';
L_IS_LOCKED = '是否锁定';

View File

@ -33,13 +33,13 @@ PointerLockControlComponent.prototype.render = function () {
fontWeight: 'bold',
width: '100%'
},
text: '指针锁定控制器'
text: L_POINTER_LOCK_CONTROLS
}]
}, {
xtype: 'row',
children: [{
xtype: 'label',
text: '是否锁定'
text: L_IS_LOCKED
}, {
xtype: 'checkbox',
id: 'isLocked',

View File

@ -251,4 +251,5 @@ Object.assign(window, {
L_AUTO_ROTATE: 'AutoRotate',
L_AUTO_ROTATE_SPEED: 'AutoRotateSpeed',
L_ENABLE_KEYS: 'EnableKeys',
L_IS_LOCKED: 'IsLocked',
});