SetElementAlpha
From Multi Theft Auto: Wiki
This function sets the alpha(transparency) value for the specified element. This can be a player or a vehicle.
Syntax
bool setElementAlpha ( element theElement, int alpha )
Required Arguments
- theElement: The element whose alpha you want to set.
- alpha: The alpha value to set. Value can be 0-255, where 255 is fully opaque and 0 is fully transparent.
Returns
Returns false if invalid arguments were passed.
Example
Click to collapse [-]
Clientside exampleThis example makes the player invisible.
function invisible() setElementAlpha(getLocalPlayer(), 0) end addCommandHandler ( "invisible", invisible )
Click to collapse [-]
Serverside exampleThis example lets you toggle invisibility when you write /invis.
function toggleInvis ( thePlayer ) -- thePlayer is whoever executed the command if getElementAlpha( thePlayer ) == 0 then -- if the player is NOT invisible setElementAlpha ( thePlayer, 0 ) -- set the players alpha to 0 (make them invisible) else -- else, if the source player IS visible setElementAlpha ( thePlayer, 255 ) -- set the players alpha to 255 (make them 100% visible) end end addCommandHandler ( "invis", toggleInvis ) -- When /invis is typed, the function 'toggleInvis' will start.
See Also
- clearElementVisibleTo
- cloneElement
- createElement
- destroyElement
- getAllElementData
- getAttachedElements
- getElementAlpha
- getElementAttachedOffsets
- getElementCollisionsEnabled
- getElementAttachedTo
- getElementByID
- getElementByIndex
- getElementChild
- getElementChildren
- getElementChildrenCount
- getElementColShape
- getElementData
- getElementDimension
- getElementHealth
- getElementID
- getElementInterior
- getElementParent
- getElementPosition
- getElementRotation
- getElementsByType
- getElementsWithinColShape
- getElementType
- getElementVelocity
- getElementZoneName
- getRootElement
- isElement
- isElementAttached
- isElementDoubleSided
- isElementFrozen
- isElementVisibleTo
- isElementWithinColShape
- removeElementData
- setElementAlpha
- setElementCollisionsEnabled
- setElementData
- setElementDoubleSided
- setElementDimension
- setElementFrozen
- setElementHealth
- setElementID
- setElementInterior
- setElementParent
- setElementPosition
- setElementSyncer
- setElementRotation
- setElementVelocity
- setElementVisibleTo
- attachElements
- detachElements
- getElementModel
- getElementSyncer
- isElementInWater
- setElementAttachedOffsets
- setElementModel
- setLowLODElement
- getLowLODElement
- isElementLowLOD