nDisplayにて2node出力。RenderモードをフレームシーケンシャルとMonoに分けたい

nDisplay。SwitchBoardを使用し2ノード出力します。

1ノードはフレームシーケンシャル対応の立体視用プロジェクターへ接続

もう1ノードは制御用のPCで通常のMono出力にしたい。

SwitchBoardで出力別にフレームシーケンシャルとMonoを別々に選びたいのですが

個別に行う設定は可能でしょうか?

[Image Removed]

To have that option selectable per node, you could edit the following file:

Engine\Plugins\VirtualProduction\Switchboard\Source\Switchboard\switchboard\devices\ndisplay\plugin_ndisplay.py

Add:

DevicenDisplay.csettings[‘render_mode’],

To the function:

setting_overrides

As shown here:

def setting_overrides(self): return [ DevicenDisplay.csettings['render_mode'], # <- HERE DevicenDisplay.csettings['ndisplay_cmd_args'], (...)It will customize the command line of each node.

[mention removed]​

Thank you for your support, Mr. Arango Alejandro.

I see that an item called RenderMode has been added to the Switchboard settings.

By setting this to MONO, I was able to make the desired configuration.

This issue has been resolved. Thank you very much.

[Image Removed]

Great! Thank you for confirming. This option will be available in 5.6 (not the preview, but the actual release).

Dear Arango Alejandro,

Thank you for your response.

I have added

DevicenDisplay.csettings[‘render_mode’]

on all nodes, but there has been no change. The nodes set to ForceMono are still blacked out.

The current version is 5.3, so I plan to try a newer version like 5.5.

If there are any other points I should test, please let me know. Thank you for your assistance.