Michaël Lemaire
ef68f38061
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@200 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
28 lines
489 B
C
28 lines
489 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <math.h>
|
|
#include <string.h>
|
|
|
|
#include "IL/il.h"
|
|
#include "IL/ilu.h"
|
|
|
|
#include "shared/types.h"
|
|
#include "shared/constants.h"
|
|
#include "shared/functions.h"
|
|
#include "shared/globals.h"
|
|
|
|
void paysagesInit()
|
|
{
|
|
ilInit();
|
|
iluInit();
|
|
|
|
cameraSetLocation(-12.0, 5.0, 2.0);
|
|
cameraSetTarget(0.0, 5.0, 0.0);
|
|
|
|
autoInit();
|
|
|
|
autoSetRenderQuality(5);
|
|
autoGenRealisticLandscape(0);
|
|
autoSetDaytime(8, 30);
|
|
}
|