HU/setBlipColor: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server client function}} | {{Server client function}} | ||
Ez a funkció lehetővé teszi, hogy megváltoztassa a blip színét. Ez a szín csak az alapértelmezett blip ikonra érvényes ([[Image:Blipid0s.png|12px]], [[Image:Blipid0u.png|12px]] vagy [[Image:Blipid0d.png|12px]]). Az összes többi ikont figyelmen kívül fogja hagyni. | |||
==Szintaxis== | ==Szintaxis== |
Revision as of 21:21, 23 July 2018
Ez a funkció lehetővé teszi, hogy megváltoztassa a blip színét. Ez a szín csak az alapértelmezett blip ikonra érvényes (, vagy ). Az összes többi ikont figyelmen kívül fogja hagyni.
Szintaxis
bool setBlipColor ( blip theBlip, int red, int green, int blue, int alpha )
OOP Syntax Help! I don't understand this!
- Method: blip:setColor(...)
- Counterpart: getBlipColor
Kötelező argumentumok
- theBlip: The blip who's color you wish to set.
- red: The amount of red in the blip's color (0 - 255).
- green: The amount of green in the blip's color (0 - 255).
- blue: The amount of blue in the blip's color (0 - 255).
- alpha: The amount of alpha in the blip's color (0 - 255). Alpha decides transparancy where 255 is opaque and 0 is transparent.
Visszaadott érték
Returns true if the blip's color was set successfully. Returns false if the blip passed to the function is invalid, or any of the colors are out of the valid range.
Példa
This example will find all the blips that exist and set them all to white if they aren't white already.
-- Retrieve a table containing all the blips that exist local blips = getElementsByType ( "blip" ) -- Loop through the list, storing the blip from the table in the variable blipValue for blipKey, blipValue in ipairs ( blips ) do -- Retrieve the blip's colors into the variables red, green, blue and alpha local red, green, blue, alpha = getBlipColor ( blipValue ) -- If the blip's icon isn't white already if ( red ~= 255 or green ~= 255 or blue ~= 255 or alpha ~= 255 ) then -- Set the blip's color to white setBlipColor ( blipValue, 255, 255, 255, 255 ) end end
Lásd még
- createBlip
- createBlipAttachedTo
- getBlipColor
- getBlipIcon
- getBlipOrdering
- getBlipSize
- getBlipVisibleDistance
- setBlipColor
- setBlipIcon
- setBlipOrdering
- setBlipSize
- setBlipVisibleDistance
Fordította
- Surge