Well, here is a piece of my scene :
#version unofficial MegaPov 1.0;
#declare rad=off;
#declare radquality=0;
#declare r1 = seed(33);
#declare testcamera=on;
#declare odavid=off;
#declare dotrees=off;
#declare ocoureur=on;
#declare ovicki=off;
global_settings {
motion_blur 10,10
#if (rad)
#switch (radquality)
#case (1)
radiosity{
pretrace_start 0.08
pretrace_end 0.01
count 130
nearest_count 5
error_bound 0.3
recursion_limit 1
low_error_factor 0.5
gray_threshold 0.0
minimum_reuse 0.015
brightness 1.0
adc_bailout 0.01/2
normal on
}
#break
#case(0)
#warning "rad quality 0"
radiosity{
pretrace_start 0.08
pretrace_end 0.01
/*count 50
error_bound 0.5
recursion_limit 1*/
}
#break
#end
#end
}
MegaPov give me a error message on "motion_blur 10,10" saying that
motion_blur is an undeclared identifier. And I didn't found any
motion_blur section in megapov's documentation.
So ?
Post a reply to this message
|