Files
wnsrc/gamemodes/darkrp/plugins/ln_songplayer/cl_hooks.lua
lifestorm 73479cff9e Upload
2024-08-04 22:55:00 +03:00

24 lines
533 B
Lua

--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
function PLUGIN:OnContextMenuOpen()
if (IsValid(self.ui.panel)) then
self.ui.panel:MakePopup()
end
end
function PLUGIN:OnContextMenuClose()
if (IsValid(self.ui.panel)) then
self.ui.panel:SetMouseInputEnabled(false)
self.ui.panel:SetKeyboardInputEnabled(false)
end
end