v3.0
接続されていない新しいパス入力の FxOperator を FxTree オブジェクトに追加します。 このメソッドは、レンダ パスのイメージ ファイルに基づいて自動的に 'file input' FxOperator を作成するために使用します。
oReturn = AddPassInputFxOp( [FxTree], [RenderPass], [Framebuffer] ); |
パラメータ | タイプ | 説明 |
---|---|---|
FxTree | String または FxTree |
FxTree のオブジェクト ポインタまたはオブジェクト名。 デフォルト値: 現在選択されている値 |
RenderPass | String または パス |
新しいオペレータに関連付けるパスのオブジェクト ポインタまたはオブジェクト名。 デフォルト値: 現在選択されている値 |
Framebuffer | 文字列 |
ファイルの取得元となるフレーム バッファの名前。空の場合は、パス上のすべてのフレーム バッファ。 デフォルト値: 空 |
' This example creates an FxTree, adds and connects the LowPassFilter and ' HighPassFilter operators to it, and then disconnects them set oTree = CreateFxTree() set oPass = GetValue("Passes.Default_Pass") ' Add the new image clip operator and print out some info set oOperator = AddPassInputFxOp( oTree, oPass ) Application.LogMessage "New operator is called '" _ & oOperator.Name & "' operator." ' Output of above script is: 'INFO : "New operator is called 'Default' operator." |