Jump to content

TAUMP

Premium
  • Posts

    898
  • Joined

  • Last visited

  • Days Won

    22
  • Feedback

    100%

Community Answers

  1. TAUMP's post in Shadow system was marked as the answer   
    bool CPythonBackground::SetShadowLevel(int eLevel) { if (!m_pkMap) return false; if (m_eShadowLevel == eLevel) return true; CMapOutdoor& rkMap = GetMapOutdoorRef(); m_eShadowLevel = eLevel; switch (m_eShadowLevel) { case SHADOW_NONE: rkMap.SetDrawShadow(false); rkMap.SetShadowTextureSize(512); break; case SHADOW_GROUND: rkMap.SetDrawShadow(true); rkMap.SetDrawCharacterShadow(false); rkMap.SetShadowTextureSize(1024); break; case SHADOW_GROUND_AND_SOLO: rkMap.SetDrawShadow(true); rkMap.SetDrawCharacterShadow(true); rkMap.SetShadowTextureSize(2048); break; case SHADOW_ALL: rkMap.SetDrawShadow(true); rkMap.SetDrawCharacterShadow(true); rkMap.SetShadowTextureSize(2048); break; case SHADOW_ALL_HIGH: rkMap.SetDrawShadow(true); rkMap.SetDrawCharacterShadow(true); rkMap.SetShadowTextureSize(4096); break; case SHADOW_ALL_MAX: rkMap.SetDrawShadow(true); rkMap.SetDrawCharacterShadow(true); rkMap.SetShadowTextureSize(4096); break; } return true; }  
  2. TAUMP's post in Chat problem was marked as the answer   
    interfacemodule..
  3. TAUMP's post in warnings mainline was marked as the answer   
    edit all lines on screen example 250000U
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.