
The speed of the spinning debris is too high, I know. But this was also only the first test.
Simply asked: Why does the sun go out for the spaceship while the debris remains illuminated?
The sun is positioned behind the camera, trace depth is set to 3, Draft mode is deactivated, build 150 is installed, 30 samples/frame, 20 frame/sec, quality 100.
This is the script:
Code: Select all
// declare objects to use
uses
'antriebstrümmer', 'komponente#2', 'trümmer kopfteil';
// Set default unit of measurements
SetUnits(Meters);
SetAngleUnits(Degree);
if FirstPass then
begin
// write initialization code here
end;
case object of
'antriebstrümmer':
begin
Pitch(108,0,5); // write your object's code here
end;
'komponente#2':
begin
Roll(18,0,5); // write your object's code here
end;
'trümmer kopfteil':
begin
Yaw(36,0,5); // write your object's code here
end;
end;