This commit is contained in:
parent
0ffb084d7c
commit
e4f15cd4a8
33
game/game.js
33
game/game.js
|
@ -849,6 +849,31 @@
|
||||||
slim:'窄',
|
slim:'窄',
|
||||||
normal:'中',
|
normal:'中',
|
||||||
wide:'宽'
|
wide:'宽'
|
||||||
|
},
|
||||||
|
onclick:function(item){
|
||||||
|
game.saveConfig('player_border',item);
|
||||||
|
if(item!='wide'||game.layout=='long'||game.layout=='long2'){
|
||||||
|
ui.arena.classList.add('slim_player');
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
ui.arena.classList.remove('slim_player');
|
||||||
|
}
|
||||||
|
if(item=='slim'){
|
||||||
|
ui.arena.classList.add('uslim_player');
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
ui.arena.classList.remove('uslim_player');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
player_border_long:{
|
||||||
|
name:'边框宽度',
|
||||||
|
init:'normal',
|
||||||
|
intro:'设置角色的边框宽度',
|
||||||
|
unfrequent:true,
|
||||||
|
item:{
|
||||||
|
slim:'窄',
|
||||||
|
normal:'中',
|
||||||
},
|
},
|
||||||
onclick:function(item){
|
onclick:function(item){
|
||||||
game.saveConfig('player_border',item);
|
game.saveConfig('player_border',item);
|
||||||
|
@ -1491,6 +1516,14 @@
|
||||||
else{
|
else{
|
||||||
map.change_skin_auto.hide();
|
map.change_skin_auto.hide();
|
||||||
}
|
}
|
||||||
|
if(game.layout=='long'||game.layout=='long2'){
|
||||||
|
map.player_border.hide();
|
||||||
|
map.player_border_long.show();
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
map.player_border.show();
|
||||||
|
map.player_border_long.hide();
|
||||||
|
}
|
||||||
if(lib.config.image_background=='default'){
|
if(lib.config.image_background=='default'){
|
||||||
map.image_background_blur.hide();
|
map.image_background_blur.hide();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue