1
Gallery / Re: Selected | Office CGIs
« on: 2024-10-05, 22:11:01 »
Great lighting mood and nicely detailed scene .
The first shot is my favorite !
The first shot is my favorite !
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.
Do you remember where exactly did you see that statement? It sounds pretty worrying TBH.it is under this video, I'm not sure if it is possible to add a link for a specific comment so I'm attaching a screenshot for it :
The whole Corona/Vray interoperability didn't move anywhere past the first basic material/lights, I don't know what stopped the process.I've noticed this too! it is nowhere where you would expect it to be after all these years.
They are adding to it slowly yes, but it's not dead yet.Supporting VRScans
This is probably dead.. it's been 3 or 4 years. I wonder if the project isn't dead for Vray as well..
:- /
Thanks, the Vray isn't really a workaround as we don't use it.it is not the best solution, but it is free to use ( you don't even need a license to use the convertor )
Hi,
We are planning to add this functionality to the CoronaConverter. However, I can't give a timescale on when it will happen.
Cheers,
Rowan
(Internal ID=484645635)
The initial idea was to make the entire house but the arrival of new work and a little bit of loss in motivation have made me decide to finish it soonerI know that feeling , I have few( or many :) ) projects suspended because of that .
macroScript AddToOverrideExclCorona
category:"dPict Tools"
tooltip:"Add to Override Exclude List Corona "
(
vr=renderers.current
newExclList=vr.overrideMtl_exclude
--cleanup existing exclusion list for undefined
for i = newExclList.count to 1 by -1 do
(
if newExclList[i] ==undefined then
(
deleteItem newExclList i
)
)
if selection.count>0 then
(
For o in selection where superClassOf o == geometryClass do
(
if (findItem newExclList o)==0 then
(
append newExclList o
)
)
vr.overrideMtl_exclude= newExclList
)
else
messageBox "Nothing Selected"
)