applypreviewbuttons.ms
来自「3dmax导出3d模型二次开发插件」· MS 代码 · 共 29 行
MS
29 行
button apply_Button "Apply" pos:[276,6] width:40 height:18
on apply_Button pressed do (
for obj in selection do (
RemoveCKChunk obj instNameSet[currentSelectedInst]
)
(instFctSet[currentSelectedInst])()
)
button applypreview_Button "A+P" pos:[316,6] width:40 height:18
on applypreview_Button pressed do (
for obj in selection do (
RemoveCKChunk obj instNameSet[currentSelectedInst]
)
(instFctSet[currentSelectedInst])()
previewFct()
)
button applyquickpreview_Button "A+Q" pos:[356,6] width:40 height:18
on applyquickpreview_Button pressed do (
for obj in selection do (
RemoveCKChunk obj instNameSet[currentSelectedInst]
)
(instFctSet[currentSelectedInst])()
quickPreviewFct()
)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?