Change state manager render output location
引用于 fadegboye 在 30. 1 月 2020, 12:53Hi Richard,
I would like to save my renders and comps to a different folder outside 03_Workflow > Shots > XXX > Rendering folder. I am working with freelancers with DropBox and syncing takes awhile as they setup their sync. They are modellers, textures and riggers and don't need access to them.
Is there a way to change the render location through the state manager or otherwise? I don't have much scripting knowledge so any help would be great.
Many thanks,
Femi
Hi Richard,
I would like to save my renders and comps to a different folder outside 03_Workflow > Shots > XXX > Rendering folder. I am working with freelancers with DropBox and syncing takes awhile as they setup their sync. They are modellers, textures and riggers and don't need access to them.
Is there a way to change the render location through the state manager or otherwise? I don't have much scripting knowledge so any help would be great.
Many thanks,
Femi
引用于 Magnus 在 11. 2 月 2020, 14:22Hi there,
This is already possible in Prism, it's just one of those many hidden features. Hopefully Richard get some time to update the docs in the future 🙂
To add custom export path edit the pipeline.ini in the project pipeline folder, please see the image attached.
-Magnus
Hi there,
This is already possible in Prism, it's just one of those many hidden features. Hopefully Richard get some time to update the docs in the future 🙂
To add custom export path edit the pipeline.ini in the project pipeline folder, please see the image attached.
-Magnus
已上传的文件:- 您必须登录才有权限上传。
引用于 fadegboye 在 13. 2 月 2020, 14:20Hi Magnus,
is there a place where I can find/use the command for PlayBlast and ImageRender. You are using "simcache" and I tried using "playblast" but it does not work.
Cheers,
Femi
Hi Magnus,
is there a place where I can find/use the command for PlayBlast and ImageRender. You are using "simcache" and I tried using "playblast" but it does not work.
Cheers,
Femi
引用于 Magnus 在 13. 2 月 2020, 17:56Did you edit the pipeline.ini file and add the code as in the picture? It should show up in the statemanager in the paths dropdown. Usually you can choose between local and global, but if you add this code it should appear in that list. It shouldn’t matter what you call the path.
Did you edit the pipeline.ini file and add the code as in the picture? It should show up in the statemanager in the paths dropdown. Usually you can choose between local and global, but if you add this code it should appear in that list. It shouldn’t matter what you call the path.
引用于 fadegboye 在 14. 2 月 2020, 20:09Hi Magnus,
I got it working now and I see it in export state manager output path drop down. But I want to save my playblasts and renders to a different path but can't see an output path option for them. Its not available in the Imagerender or playblast tab options. Am I missing something?
Thanks again for your help.
Femi
Hi Magnus,
I got it working now and I see it in export state manager output path drop down. But I want to save my playblasts and renders to a different path but can't see an output path option for them. Its not available in the Imagerender or playblast tab options. Am I missing something?
Thanks again for your help.
Femi
引用于 Magnus 在 14. 2 月 2020, 20:14Hi Femi,
I see, I’ve only used it for cache export so I’m not sure if it’s in the image and playblast export settings. (Not near a computer so can’t check right now)
@richardf Do you remember how you set this up? If it is not included it would be a quick thing to add right?
Hi Femi,
I see, I’ve only used it for cache export so I’m not sure if it’s in the image and playblast export settings. (Not near a computer so can’t check right now)
@richardf Do you remember how you set this up? If it is not included it would be a quick thing to add right?
引用于 RichardF 在 17. 2 月 2020, 11:24At the moment this feature only works for the export state. When I find the time I will add it also for the render and playblast states.
But it's quite easy to modify the render script to do what you want.
At this location:
https://github.com/RichardFrangenberg/Prism/blob/39796b4b1888e2b38113f54c70bb492489702eee/Prism/Scripts/ProjectScripts/StateManagerNodes/default_ImageRender.py#L758
you can add one line like this:
outputPath = outputPath.replace(self.core.projectPath, "X:/my/external/location/")
This simply changes the output location to a location outside of your project folder.
At the moment this feature only works for the export state. When I find the time I will add it also for the render and playblast states.
But it's quite easy to modify the render script to do what you want.
At this location:
you can add one line like this:
outputPath = outputPath.replace(self.core.projectPath, "X:/my/external/location/")
This simply changes the output location to a location outside of your project folder.