Joined: May 31, 2017
Post Count: 17
Status:
Offline
3D rendering - Where to change default settings
Hi, can you send me path, where to find file with Photo create setting. So every time when I will be rendering 3d photo there will be my options. For example width 1680px height 1120px, Time 5.30pm etc.
France
Joined: Nov 7, 2005
Post Count: 9426
Status:
Offline
Re: 3D rendering - Where to change default settings
The default value of this parameters are directly set in the program : in HomeEnvironment class for photo width and height, and in Camera class for the time. So, if you know a little Java and how to build a program from its source code, you can change these settings with no problem, otherwise I fear it won't be possible.
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D creator
Joined: May 31, 2017
Post Count: 17
Status:
Offline
Re: 3D rendering - Where to change default settings
Thank you! I'm not very good in java but I changed size of photo and time to 17:30. Can you pls advice me how to change date from actuall date to for example 15 July. Also I need uncheck Aplly proportions and Add celing light.
private static long midday() { Calendar midday = new GregorianCalendar(TimeZone.getTimeZone("UTC")); midday.set(Calendar.HOUR_OF_DAY, 17); midday.set(Calendar.MINUTE, 30); midday.set(Calendar.SECOND, 0); midday.set(Calendar.MILLISECOND, 0); return midday.getTimeInMillis();
France
Joined: Nov 7, 2005
Post Count: 9426
Status:
Offline
Re: 3D rendering - Where to change default settings
I gave you the idea last time. Changing the date is about learning to use GregorianCalendar API and the other settings can be found in the code just by searching their name. Good luck!
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D creator