Jump to content

Recommended Posts

Hello community.

I have this error at sysser:
0630 12:13:03315 :: File "mouseModule.py", line 152, in ChangeCursor 0630 12:13:03316 :: AttributeError 0630 12:13:03316 :: : 0630 12:13:03316 :: 'CMouseController' object has no attribute 'cursorDict' 0630 12:13:03316 ::

Any ideas how to fix it? this causes a lot of lag at client.
Thanks for your time.

Link to comment
Share on other sites

  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

  • 10 months later...
  • 1 year later...

If you add the fix for camera when minimize client, open PythonApplicationProcedure.cpp and this case should look like this

 

case WM_ACTIVATEAPP:
			{
				m_isActivateWnd = (wParam == WA_ACTIVE) || (wParam == WA_CLICKACTIVE);

				if (m_isActivateWnd)
				{
					m_SoundManager.RestoreVolume();

					if (m_isWindowFullScreenEnable)
						__MinimizeFullScreenWindow(hWnd, m_dwWidth, m_dwHeight);
				}
				else
				{
					m_SoundManager.SaveVolume();

					if (m_isWindowFullScreenEnable)
					{
						__MinimizeFullScreenWindow(hWnd, m_dwWidth, m_dwHeight);
						__ResetCameraWhenMinimize();
					}
					else
					{
						__ResetCameraWhenMinimize();
					}
				}
			}
			break;

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • 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.