インタフェース: SceneMissingPlugIns

[インタフェース](Interfaces) > [コア インタフェース](Core Interfaces) > [SceneMissingPlugIns]

 

   

コア インタフェース - クイック ナビゲーション

SceneMissingPlugins コア インタフェースでは、現在のシーン上で見つからないプラグインの数、クラス、ファイル名および説明をクエリーするメソッドが提供されています。

3ds Max 2014 以降で使用可能です。

   

メソッド:

<integer>SceneMissingPlugIns.GetMissingPlugInCount()

現在のシーン上で見つからないプラグインの数を返します。

   

<string>SceneMissingPlugIns.GetMissingPlugInClassName <index>Index

インデックスで指定された見つからないプラグインのクラス名を返します。

   

<string>SceneMissingPlugIns.GetMissingPlugInFileName <index>Index

インデックスで指定された見つからないプラグインのファイル名を返します。

   

<string>SceneMissingPlugIns.GetMissingPlugInDescription <index>Index

インデックスで指定された見つからないプラグインの説明を返します。

   

例:
--The following script will print information about missing plugins, if any:
for i = 1 to SceneMissingPlugIns.GetMissingPlugInCount() do
(
    local theName = SceneMissingPlugIns.GetMissingPlugInClassName i
    local theFileName = SceneMissingPlugIns.GetMissingPlugInFileName i
    local theDesc = SceneMissingPlugIns.GetMissingPlugInDescription i
    format "%: % | % | %\n" i theName theFileName theDesc
)
--To test, evaluate a scripted plugin, create an instance of it in the scene and save the scene.
--Restart 3ds Max and without reevaluating the scripted plugin, load the scene file.
--Then execute the script above to see the information about your missing plugin.