Commands/Lua
Reference for console commands, Lua hooks and Lua commands in CS2D.
- Console Commands are entered in console, executed with key-binds, cfg-files or with Lua parse
- Lua Hooks execute Lua when events occur - some have a return value which can change the game behavior
- Lua Commands are used to retrieve game data or to perform actions in Lua scripts
CS2D Console Commands
Lua Hooks
Lua Commands
imagealphaCategories
Parameters
- id
- alpha
Info
Changes the opacity (also known as alpha, 0.0 transparent - 1.0 opaque) of an image.
This can either be used to make an image (semi-)transparent / fully opaque or to temporarily hide an image completely (alpha 0).
Note: Images with a very low alpha value (below 0.0001) are not rendered anymore. This allows you to hide images efficiently by setting their alpha value to 0. Note however that there is still a tiny (but negligible) performance impact even if the image is not rendered. If you are sure that you will not need an image anymore you should remove it with freeimage!
Note: If you just want to hide an image it is most efficient to set alpha to 0. Later set it to a higher value to show it again. Deleting the image with freeimage and creating a new one causes much more network traffic than hiding it.
Sample 1: Creating an image and changing its opacity
local id=image("gfx/sprites/flare2.bmp",0,0,2)
imagealpha(id,0.5)
Categories
Parameters
- id
- alpha
Info
Changes the opacity (also known as alpha, 0.0 transparent - 1.0 opaque) of an image.
This can either be used to make an image (semi-)transparent / fully opaque or to temporarily hide an image completely (alpha 0).
Sample 1: Creating an image and changing its opacity
This can either be used to make an image (semi-)transparent / fully opaque or to temporarily hide an image completely (alpha 0).
Note: Images with a very low alpha value (below 0.0001) are not rendered anymore. This allows you to hide images efficiently by setting their alpha value to 0. Note however that there is still a tiny (but negligible) performance impact even if the image is not rendered. If you are sure that you will not need an image anymore you should remove it with freeimage!
Note: If you just want to hide an image it is most efficient to set alpha to 0. Later set it to a higher value to show it again. Deleting the image with freeimage and creating a new one causes much more network traffic than hiding it.
Sample 1: Creating an image and changing its opacity
local id=image("gfx/sprites/flare2.bmp",0,0,2)
imagealpha(id,0.5)
imagealpha(id,0.5)