英雄连截图问题

来源:百度知道 编辑:UC知道 时间:2024/07/08 13:13:04
在游戏解图时怎么把游戏操作截面取消了?懂的人说下,谢谢哦!
还有那些兵和建筑物上的图标怎么去掉啊!

见下列代码输入文本文档:

  g_bShowTaskbar = 1
  g_bShowGameUI = 1
  function UpdateTaskbarAndGameUI()
  if (g_bShowTaskbar == 1) then
  taskbar_show()
  message_show()
  else
  taskbar_hide()
  message_hide()
  end
  if (g_bShowGameUI == 1) then
  game_showui()
  else
  game_hideui()
  end
  end
  function ToggleShowTaskbar()
  if (g_bShowTaskbar == 0) then
  g_bShowTaskbar = 1
  else
  g_bShowTaskbar = 0
  end
  UpdateTaskbarAndGameUI()
  end
  function ToggleShowGameUI()
  if (g_bShowGameUI == 0) then
  g_bShowGameUI = 1
  else
  g_bShowGameUI = 0
  end
  UpdateTaskbarAndGameUI()
  end
  g_bShowFPS = 0
  function ToggleShowFPS()
  if (g_bShowFPS == 0) then
  g_bShowFPS = 1
  statgraph_set_visible(1)
  statgraph_channel_set_enabled("fps",1)
  else
  g_bShowFPS = 0
  statgraph_