Hi everyone,
All is in the title, can one use derma to create HUD or it's not possible ?
Thanks in advance
Yes, it is possible, but you need to make sure to NEVER create the derma elements every frame.
local created = false
hook.Add( "HUDPaint", "blah", function()
if created then return end
-- CREATE DERMA ELEMENTS HERE
created = true
end )
But derma disable user inputs no?
Not if you use ParentToHUD
Sorry, you need to Log In to post a reply to this thread.