Hi, i have a problem with shadows. I turned on shadows in project but when i export my animation to video no shadows are shown. Here is a link where you can download my skp file File Dropper - Online file sharing
I searched everywhere but nothing Please help !
Try the latest MR 17.2, and report back.
You probably got over this problem but for anyone else having issues with this, make sure that your scenes have shadows too. If you had shadows disabled when creating the scenes, then the scenes will render with shadows disabled.
1 Like
Yes, but if all of the scene pages are using the same time and date, then you can switch off shadow saving for each scene page and just use the modelβs global shadow info settings:
UI.menu("View").add_item("All Scenes Use Model Shadows") do
model = Sketchup.active_model
model.pages.select {|pg|
pg.include_in_animation?
}.each { |pg|
pg.use_shadow_info= false
pg.update
}
model.shadow_info["DisplayShadows"]= true
end