made verbose the default option

git-svn-id: svn://anubis/fart/trunk@181 7f9b0f55-74a9-4bce-be96-3c2cd072584d
This commit is contained in:
Josh Holtrop 2009-03-03 03:22:12 +00:00
parent 73cc495a79
commit 1f00625379
2 changed files with 1 additions and 2 deletions

1
.todo
View File

@ -1,6 +1,5 @@
FART To-Do List FART To-Do List
=============== ===============
- Make verbose default
- Recurse for reflection - Recurse for reflection
- Continue for transparency - Continue for transparency
- Scan for cameras before scene items - Scan for cameras before scene items

View File

@ -25,7 +25,7 @@ Scene::Scene(const map<string, const char *> & options,
m_multisample_level = 1; m_multisample_level = 1;
m_output_file_name = "fart.bmp"; m_output_file_name = "fart.bmp";
m_vfov = 60.0; m_vfov = 60.0;
m_verbose = false; m_verbose = true;
m_data = NULL; m_data = NULL;
m_ambient_light = Color(0.1, 0.1, 0.1); m_ambient_light = Color(0.1, 0.1, 0.1);
m_max_depth = 10; m_max_depth = 10;