• quick lua question.
    3 replies, posted
[CODE]--Background blur on control menu? (T/F) local Background Blur CP = ( true ) local CTRLMM = vgui.Create( "DFrame" ) CTRLMM:Center() CTRLMM:SetSize( 300, 200 ) CTRLMM:SetTitle( "Main Menu" ) CTRLMM:SetBackgroundBlur( Background Blur CP ) CTRLMM:SetDraggable( true ) CTRLMM:MakePopup() CTRLMM:ShowCloseButton( false )[/CODE] for the " CTRLMM:SetBackgroundBlur( Background Blur CP ) " would that work? not sure. [editline]11th September 2016[/editline] another quick one, in sublime how do i get rid of that white menu on the right? [url]http://imgur.com/Os8OLgu[/url]
No. Variables cannot have spaces in their names. "Background Blur CP" is not a valid identifier for a variable. For the sidebar, I believe it's ctrl+k then ctrl+b to toggle it.
shit wrong thread LOL [editline]11th September 2016[/editline] so what would i write? [editline]11th September 2016[/editline] Background_Blur_CP? [editline]11th September 2016[/editline] [url]http://imgur.com/OWvXMjj[/url] eh good enough
You can use what ever you want to use as long as it doesn't have spaces or conflict with others, I typically create a table and put all my information in there. "MyTable.BackGroundBlurCP = true" would make it so you could call that from outside the file/function instead of it being local. For this you would have MyTable = MyTable or {}, obviously change MyTable to what you want to use.
Sorry, you need to Log In to post a reply to this thread.