跳轉至

EX腳本

EX腳本用於對Live2DViewerEX進行配置相關的操作,代替用戶操作

執行腳本

■ Windows:托盤圖標右鍵 -> 運行
■ MacOS: 狀態欄圖標左鍵 -> 運行腳本

示例

#EX Script
command
command
...

腳本模板: template.txt

#EX Script 腳本頭,此字段為固定值
command 指令行

注意

所有路徑和名稱中若存在空格,需在空格前加反斜槓(\)


添加LPK文件

add_lpk_model [path]

add_lpk_model model.lpk
path 文件相對路徑,根目錄為腳本所在文件夾

加載LPK模型

load_lpk_model [slot] [lpk] [char] [cos]

load_lpk_model 1 lpk char cos
slot 插槽序號,1~8
lpk lpk文件名,不包含文件後綴
char 角色名
cos 服裝名

提示

若存在多個符合條件的模型,僅加載第一個找到的


編輯LPK模型

edit_lpk_model [lpk] [char] [cos] [type] [item] [sp_key] [key]

edit_lpk_model lpk char cos 1 Tap:Mtn 3 A
lpk lpk文件名,不包含文件後綴
char 角色名
cos 服裝名
type 編輯類型:
■ 1:按鍵綁定 - 事件
■ 2:按鍵綁定 - 動作
■ 3:按鍵綁定 - 表情
item 要綁定的項目名
sp_key 組合鍵:
■ 0:無
■ 1:ctrl
■ 2:shift
■ 3:ctrl + shift
key 熱鍵。支持 A-Z 和 0-9,其中字母必須大寫

提示

若存在多個符合條件的模型,僅編輯第一個找到的


設置模型位置

set_model_position [slot] [x] [y]

set_model_position 1 50 100
slot 插槽序號,1~8
x 相對於屏幕中心的X軸位置
y 相對於屏幕中心的Y軸位置

設置模型大小

set_model_size [slot] [size]

set_model_size 1 1.5
slot 插槽序號,1~8
size 模型大小

設置模型角度

set_model_angle [slot] [angle]

set_model_angle 1 90
slot 插槽序號,1~8
angle 角度

設置模型鏡像

set_model_mirror [slot] [on]

set_model_mirror 1 1
slot 插槽序號,1~8
on ■ 0:關閉
■ 1:打開

啓用熱鍵

set_hotkey_enable [enable]

set_hotkey_enable 2
enable ■ 0:禁用
■ 1:僅在桌面啓用
■ 2:總是啓用

顯示懸浮圖標

set_floating_icon [show]

set_floating_icon 1
show ■ 0:不顯示
■ 1:顯示

設置啓動模式

set_launch_mode [mode]

set_launch_mode 1
mode ■ 0:壁紙模式
■ 1:桌面模式

設置總是顯示在最前面

set_always_on_top [on]

set_always_on_top 1
on ■ 0:關閉
■ 1:打開

提示

僅在桌面模式下有效


設置顯示類型

set_display_type [type]

set_display_type 1
type ■ 0:全屏
■ 1:工作區
■ 2:窗口

提示

僅在桌面模式下有效


設置窗口尺寸

set_window_size [width] [height]

set_window_size 960 720
width 寬度
height 高度

提示

僅在桌面窗口模式下有效


啓用OBS兼容(Windows)

set_obs_compat [enable]

set_obs_compat 1
enable ■ 0:禁用
■ 1:啓用

設置濾鏡關鍵色(Windows)

set_filter_color [color]

set_filter_color FF00FF
color 十六進制RGB值,例如:FF00FF

啓用虛擬攝像頭(Windows)

set_virtual_camera [enable]

set_virtual_camera 1
enable ■ 0:禁用
■ 1:啓用

提示

此設定在每次重啓應用會重置,請勿和需要重啓應用的腳本同時使用


安裝虛擬攝像頭(Windows)

install_virtual_camera

install_virtual_camera

卸載虛擬攝像頭(Windows)

uninstall_virtual_camera

uninstall_virtual_camera

當其他應用全屏時

set_other_app_fullscreen [method]

set_other_app_fullscreen 1
method ■ 0:保持運行
■ 1:暫停
■ 2:靜音

當其他應用最大化時

set_other_app_maximized [method]

set_other_app_maximized 1
method ■ 0:保持運行
■ 1:暫停
■ 2:靜音