mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-05 13:54:08 +00:00
VC Water
This commit is contained in:
parent
90947a608f
commit
63d0bdc863
11 changed files with 2168 additions and 652 deletions
|
@ -306,7 +306,7 @@ bool CGame::Initialise(const char* datFile)
|
|||
CWorld::Players[0].LoadPlayerSkin();
|
||||
TestModelIndices();
|
||||
LoadingScreen("Loading the Game", "Setup water", nil);
|
||||
CWaterLevel::Initialise("DATA\\WATER.DAT");
|
||||
WaterLevelInitialise("DATA\\WATER.DAT");
|
||||
TheConsole.Init();
|
||||
CDraw::SetFOV(120.0f);
|
||||
CDraw::ms_fLODDistance = 500.0f;
|
||||
|
@ -685,6 +685,13 @@ CGame::InitAfterFocusLoss()
|
|||
FrontEndMenuManager.m_bStartUpFrontEndRequested = true;
|
||||
}
|
||||
|
||||
bool
|
||||
CGame::CanSeeWaterFromCurrArea(void)
|
||||
{
|
||||
return currArea == AREA_MAIN_MAP || currArea == AREA_MANSION
|
||||
|| currArea == AREA_HOTEL;
|
||||
}
|
||||
|
||||
bool
|
||||
CGame::CanSeeOutSideFromCurrArea(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue