~diresu/blender/blender-command-port

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/intern/world.c

  • Committer: Dietrich Bollmann
  • Date: 2009-05-31 06:18:40 UTC
  • mfrom: (184.1.850)
  • Revision ID: diresu@web.de-20090531061840-r8gn72wodu0vvhok
Command Port Blender 2.49

Update to state of blender repository from 2009-05-29 revision 20508.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*  world.c
3
3
 * 
4
4
 * 
5
 
 * $Id: world.c 19710 2009-04-13 20:08:33Z ben2610 $
 
5
 * $Id: world.c 20492 2009-05-29 08:55:14Z ben2610 $
6
6
 *
7
7
 * ***** BEGIN GPL LICENSE BLOCK *****
8
8
 *
109
109
        wrld->mode = WO_DBVT_CULLING;   // DBVT culling by default
110
110
        wrld->occlusionRes = 128;
111
111
        wrld->preview = NULL;
 
112
        wrld->ticrate = 60;
 
113
        wrld->maxlogicstep = 5;
 
114
        wrld->physubstep = 1;
 
115
        wrld->maxphystep = 5;
112
116
 
113
117
        return wrld;
114
118
}