dongju.jeong Posted November 10, 2021 Posted November 10, 2021 I want the brightness or contrast ratio to be changed separately in the slave channel. However, the slave channel seems to be synchronized with the setting of the master channel unconditionally. Console::setFloat("render_exposure", value1 +0.9f); Console::setFloat("render_filmic_linear_scale", 1 - value2); ^ These methods are not working in slave channel. Can the brightness and contrast ratio of slave channels be asynchronous?
dongju.jeong Posted November 10, 2021 Author Posted November 10, 2021 (edited) I found setSkipFlags (flags); method in the document. Does adding "render" to the flag parameter solve this problem? AppSystemLogic::ig_manager->getSynckerSlave()->setSkipFlags(Plugins::Syncker::Slave::SKIP_FLAGS::RENDER); Edited November 10, 2021 by dongju.jeong 1
cash-metall Posted November 10, 2021 Posted November 10, 2021 2 hours ago, dongju.jeong said: setSkipFlags (flags); method in the document. Does adding "render" to the flag parameter solve this problem? yes, you are right. this flag disables synchronization for render_* parameters.
Recommended Posts