mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-04 20:04:08 +00:00
stable CScriptPaths
This commit is contained in:
parent
895055a3d1
commit
03c90b7c40
6 changed files with 250 additions and 11 deletions
|
@ -333,6 +333,7 @@ bool CGame::Initialise(const char* datFile)
|
|||
CDebug::DebugInitTextBuffer();
|
||||
ThePaths.Init();
|
||||
ThePaths.AllocatePathFindInfoMem(4500);
|
||||
CScriptPaths::Init();
|
||||
CWeather::Init();
|
||||
CCullZones::Init();
|
||||
COcclusion::Init();
|
||||
|
@ -463,6 +464,7 @@ bool CGame::ShutDown(void)
|
|||
CReplay::FinishPlayback();
|
||||
CPlane::Shutdown();
|
||||
CTrain::Shutdown();
|
||||
CScriptPaths::Shutdown();
|
||||
CSpecialFX::Shutdown();
|
||||
#ifndef PS2
|
||||
CGarages::Shutdown();
|
||||
|
@ -577,6 +579,7 @@ void CGame::ReInitGameObjectVariables(void)
|
|||
CSpecialFX::Init();
|
||||
CRopes::Init();
|
||||
CWaterCannons::Init();
|
||||
CScriptPaths::Init();
|
||||
CParticle::ReloadConfig();
|
||||
|
||||
#ifdef PS2_MENU
|
||||
|
@ -719,6 +722,7 @@ void CGame::Process(void)
|
|||
CWeather::Update();
|
||||
CTheScripts::Process();
|
||||
CCollision::Update();
|
||||
CScriptPaths::Update();
|
||||
CTrain::UpdateTrains();
|
||||
CPlane::UpdatePlanes();
|
||||
CHeli::UpdateHelis();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue