THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/10/2007 at 12:45, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 10.5
Platform: Windows ;
Language(s) : C++ ;
---------
Hi,
I'm trying to generate custom rays with a VideoPostPlugin but somehow my generated rays do not reach the renderer. What I tried was to send a MultiMessage to the corresponding GeListNode like for instance:
> _
> VideopostCreateRay ray;
> ray.x = 0;
> ray.y = 0;
> ray.p.x = 0;
> ray.p.y = 0;
> ray.p.z = 100.0;
> ray.v.x = 0;
> ray.v.y = 0;
> ray.v.z = 100.0;
> Get()- >MultiMessage(MULTIMSG_BROADCAST,MSG_VIDEOPOST_CREATERAY, &ray;)
> _
but with no effect. How do I get the ray to the renderer? The SDK reference says something about sending a message, but how and when? Or can somebody explain how the CylindricalLens plugin provided with C4D 10 works?
Cheers,
Bogumil