|
1 registered members (TipmyPip),
18,388
guests, and 6
spiders. |
Key:
Admin,
Global Mod,
Mod
|
|
|
Re: Newton Physik-Engine
[Re: _burnner_]
#21610
12/30/03 07:00
12/30/03 07:00
|
Joined: Jun 2002
Posts: 3,682 Coppell, Texas
Ran Man
Expert
|
Expert
Joined: Jun 2002
Posts: 3,682
Coppell, Texas
|
Quote:
Prefabs fallen bei Blöcken (Boden) durch.
Prefabs or blocks will not work with the Newton engine, until you make the necessary modifications to your .wdl file like shown in their manual below"
Quote:
- After the code line:
string level_str = <levelname.WMB>
Paste this code fragment
ifdef USE_NEWTON_GAME_DYNAMICS;
string newtonLevel_cls = <levelname.CLS>
endif;
- Go to the function main and after the code line
level_load(level_str);
- Paste this code fragment
ifdef USE_NEWTON_GAME_DYNAMICS;
wait(1);
dll_handle = newtonHandle;
NewtonAddMap (level_str, splashscreen);
endif;
After you make changes, you should compile, then SAVE your level. Be sure to SAVE it, because this is important to the physic engine.
|
|
|
|
|
|