HU/setBlipIcon: Difference between revisions
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
===Kötelező argumentumok=== | ===Kötelező argumentumok=== | ||
*'''theBlip''' A blip melyre az icont szeretné állítani. | *'''theBlip''' A blip melyre az icont szeretné állítani. | ||
*'''icon:''' Egy szám jelzi | *'''icon:''' Egy szám jelzi az icont, amit modosítani szeretne. Az érvényes értékeket megtalálja a [[Blip Icons]] oldalon. | ||
===Visszaadott érték=== | ===Visszaadott érték=== |
Revision as of 16:28, 24 July 2018
Ez a funkció beállít egy icont egy meglévő blip elemre.
Szintaxis
bool setBlipIcon ( blip theBlip, int icon )
OOP Syntax Help! I don't understand this!
- Method: blip:setIcon(...)
- Variable: .icon
- Counterpart: getBlipIcon
Kötelező argumentumok
- theBlip A blip melyre az icont szeretné állítani.
- icon: Egy szám jelzi az icont, amit modosítani szeretne. Az érvényes értékeket megtalálja a Blip Icons oldalon.
Visszaadott érték
Returns true if the icon was successfully set, false if the element passed was not a valid blip or the icon value was not a valid icon number.
Példa
This example resets all blip icons to the default blip icon, 0.
-- Retrieve a table containing all the blips that exist blips = getElementsByType ( "blip" ) -- Loop through the list, storing the blip from the table in the variable blipValue for blipKey, blipValue in blips do -- Retrieve the blip's icon into the variable 'blipIcon' blipIcon = getBlipIcon ( blipValue ) -- If the blip's icon wasn't the default already if ( blipIcon ~= 0 ) then -- Set the blip's icon to the default setBlipIcon ( blipValue, 0 ) end end
Lásd még
- createBlip
- createBlipAttachedTo
- getBlipColor
- getBlipIcon
- getBlipOrdering
- getBlipSize
- getBlipVisibleDistance
- setBlipColor
- setBlipIcon
- setBlipOrdering
- setBlipSize
- setBlipVisibleDistance
Fordította
Surge