Related changes
Jump to navigation
Jump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
3 December 2025
| 11:12 | Template:Client PostFX functions diffhist +40 O22 talk contribs | ||||
| N 11:08 | IsPostFXEnabled diffhist +878 O22 talk contribs (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6|23644 | Checks whether a specific PostFX effect is currently enabled. }} ==Syntax== <syntaxhighlight lang="lua"> bool IsPostFXEnabled ( string fxType ) </syntaxhighlight> ===Required arguments=== *'''fxType''': An string of the PostFX. Possible values are: **'''Gamma''' **'''Brightness''' **'''Contrast''' **'''Saturation''' ===Returns=== Returns '''true''' if the selected type is enabled, otherwise '''false...") | ||||
| N 11:05 | GetPostFXMode diffhist +813 O22 talk contribs (Created page with "__NOTOC__ {{Client function}} {{New feature/item|3.0161|1.6|23644| Gets the current mode of PostFX. }} ==Syntax== <syntaxhighlight lang="lua"> int getPostFXMode ( ) </syntaxhighlight> ===Returns=== An integer for the current PostFX mode: * 0: Disabled * 1: Enabled in fullscreen mode * 2: Enabled in windowed/borderless mode ==Example== This example gets the current PostFX mode and displays it in the chat. <syntaxhighlight lang="lua"> local modes = { [0] = "Disabl...") | ||||