Dear Away3D users,
I’m trying to use DepthOfFilter3D with a few other Filter3Ds.
They work when I sort DepthOfFilter3D at the end of Filter3D’s list,
but I sort it at first, my display is show just black.
my code (not work):
BLM=new BloomFilter3D(30, 30);
DOF=new DepthOfFieldFilter3D(30, 30, - 1);
DOF.focusTarget=targetMesh;
view.filters3d=[DOF, BLM];
//view.filters3d=[BLM, DOF]; // This work.
I wanna use other filters after applying DepthOfField3D.
Do I have to modify DepthOfField3D?