ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
pluginInfo [-activeFile] [-apiVersion] [-autoload boolean] [-cacheFormat] [-changedCommand script] [-command string] [-constraintCommand string] [-controlCommand string] [-data string string] [-dependNode] [-dependNodeByType string] [-dependNodeId string] [-device] [-dragAndDropBehavior] [-iksolver] [-listPlugins] [-loadPluginPrefs] [-loaded] [-modelEditorCommand string] [-name string] [-path string] [-pluginsInUse] [-registered] [-remove] [-savePluginPrefs] [-serviceDescriptions] [-settings] [-tool string] [-translator] [-unloadOk] [-userNamed] [-vendor string] [-version]
[string]
pluginInfo は、取り消し可能、照会可能、および編集可能です。
アプリケーションのプラグイン レジストリにアクセスできます。登録されているプラグインの特徴を照会するために主に使用します。プラグインは、初めてロードされた際に自動的に登録されます。 この引数は、プラグインの内部名、またはこれにアクセスするためのパスのどちらかです。Any | 要求されたアクションによって異なります。 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
---|---|---|---|---|
-name(-n)
|
string
|
|||
|
||||
-path(-p)
|
string
|
|||
|
||||
-vendor(-vd)
|
string
|
|||
|
||||
-version(-v)
|
|
|||
|
||||
-apiVersion(-av)
|
|
|||
|
||||
-listPlugins(-ls)
|
|
|||
|
||||
-pluginsInUse(-pu)
|
|
|||
|
||||
-loaded(-l)
|
|
|||
|
||||
-unloadOk(-uo)
|
|
|||
|
||||
-autoload(-a)
|
boolean
|
|||
|
||||
-savePluginPrefs(-spp)
|
|
|||
|
||||
-loadPluginPrefs(-lpp)
|
|
|||
|
||||
-command(-c)
|
string
|
|||
|
||||
-tool(-t)
|
string
|
|||
|
||||
-dependNodeByType(-dnt)
|
string
|
|||
|
||||
-dependNode(-dn)
|
|
|||
|
||||
-dependNodeId(-dni)
|
string
|
|||
|
||||
-data(-d)
|
string string
|
|||
|
||||
-translator(-tr)
|
|
|||
|
||||
-iksolver(-ik)
|
|
|||
|
||||
-device(-dv)
|
|
|||
|
||||
-dragAndDropBehavior(-ddb)
|
|
|||
|
||||
-userNamed(-u)
|
|
|||
|
||||
-registered(-r)
|
|
|||
|
||||
-serviceDescriptions(-sd)
|
|
|||
|
||||
-remove(-rm)
|
|
|||
|
||||
-changedCommand(-cc)
|
script
|
|||
|
||||
-settings(-set)
|
|
|||
|
||||
-cacheFormat(-cf)
|
|
|||
|
||||
-activeFile(-af)
|
|
|||
|
||||
-modelEditorCommand(-mec)
|
string
|
|||
|
||||
-controlCommand(-ctc)
|
string
|
|||
|
||||
-constraintCommand(-cnc)
|
string
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// List the plugins that are currently loaded pluginInfo -query -listPlugins; // Find the vendor of a plugin pluginInfo -query -vendor newNode; // Find the commands provided by a given plug-in pluginInfo -query -command helloCmd; // Turn on autoloading for a plug-in pluginInfo -edit -autoload true newNode; // Return all custom locators registered by plug-ins. pluginInfo -query -dependNodeByType "kLocatorNode";