Change default margin for bake to 16 pixels

This commit is contained in:
Antony Riakiotakis
2013-03-04 15:58:40 +00:00
parent 41b801ab9c
commit f5a28a288b
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -435,7 +435,7 @@ Scene *BKE_scene_add(Main *bmain, const char *name)
sce->r.postsat = 1.0;
sce->r.bake_mode = 1; /* prevent to include render stuff here */
sce->r.bake_filter = 2;
sce->r.bake_filter = 16;
sce->r.bake_osa = 5;
sce->r.bake_flag = R_BAKE_CLEAR;
sce->r.bake_normal_space = R_BAKE_SPACE_TANGENT;

View File

@@ -2550,7 +2550,7 @@ void blo_do_versions_pre250(FileData *fd, Library *lib, Main *main)
if (main->subversionfile < 4) {
for (sce = main->scene.first; sce; sce = sce->id.next) {
sce->r.bake_mode = 1; /* prevent to include render stuff here */
sce->r.bake_filter = 2;
sce->r.bake_filter = 16;
sce->r.bake_osa = 5;
sce->r.bake_flag = R_BAKE_CLEAR;
}