106
[C4D] General Discussion / Re: New VFB - where is the pass dropdown?
« on: 2024-07-15, 08:16:39 »
Hi,
It's in a weird location but still here :
It's in a weird location but still here :

Having trouble verifying your license? If you are seeing a license verification message or are unable to access your Chaos products, please follow these simple steps to fix sign-in issues. If you have already tried this and are still unable to access your Chaos products, please contact Support.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
I've not come across this before, but what is a Scene Hook exactly?
Cheers!
I hope it was helpful
# Access to the corresponding scene hook
mp_settings = doc.FindSceneHook(1037467)
# Enable multipass
if mp_settings[c4d.CORONA_MULTIPASS_ENABLE] == 0:
mp_settings[c4d.CORONA_MULTIPASS_ENABLE] = 1
# Passes are stored under a c4d.GeListHead object
# First we get the scene hook that stores multipass settings
# and the branch for passes
hook = c4d.documents.GetActiveDocument().FindSceneHook(1037467)
branch = hook.GetBranchInfo()
# Then we look for the list head
if branch:
head = [b.get('head') for b in branch if b.get('id') == 1037373]
if head:
head = head[0]
return head
John_Do, i've tried to execute gamma correction on saved image but with not good results. Can you please suggest me which kind of correction have you made on the example picture you have posted?