Hello

I'm going to ask a small question.

I've made a sample level. I've loaded the A7 Lite C template.

When I edit my c file, I'm trying to play with some commands like sun_light.

The problem is that I can setup sun_light, sun_color with differents values, when I launch the level there is no change.

the code :
Code:

///////////////////////////////
#define PRAGMA_PATH "%EXE_DIR%\templates\images";
#define PRAGMA_PATH "%EXE_DIR%\templates\models";
#define PRAGMA_PATH "%EXE_DIR%\templates\sounds";
//
#include <acknex.h>
#include <default.c>
#include "mtlFX.c"
///////////////////////////////

function main()

{
video_mode = 7;
sun_angle.pan = 225;
sun_angle.tilt = 45;
var sun_light = 100;
vec_set(sun_color,vector(0,0,255));
level_load("test.WMB");


}


I've tried to put the sun commands before loading the level or after but no change. I've tried to take the sun off with wed before, no change...

What's wrong ?

thx in advance.