SetElementStreamable
From Multi Theft Auto: Wiki
This function can be used to disable streaming for an element. This will make sure the element is not virtualized (streamed out from GTA) when the player moves far away from it. This function only works in elements with a physical representation in the world (entities), such as players, peds, vehicles and objects.
Tip: Always use this function with caution. Not doing so can cause the following problems:
|
Syntax
bool setElementStreamable ( element theElement, bool streamable )
OOP Syntax Help! I don't understand this!
- Method: element:setStreamable(...)
- Variable: .streamable
- Counterpart: isElementStreamable
Required Arguments
- theElement: The element you wish to set the streaming of
- streamable: true if this element should stream in/out like normal, false if it should always be streamed in.
Returns
Returns whether the element could be set to be streamable.
Example
This example creates an object at the center of the map which will always be streamed in when the resource which contains it starts.
local function testNonStreamableObjects() local object = createObject ( 1097, 0, 0, 5 ) setElementStreamable ( object, false ) -- Make the object always be streamed in end addEventHandler ( "onClientResourceStart", resourceRoot, testNonStreamableObjects )
See Also
- attachElements
- createElement
- destroyElement
- detachElements
- getAttachedElements
- getElementAlpha
- getElementAttachedOffsets
- getElementAttachedTo
- getElementBoundingBox
- getElementByID
- getElementChild
- getElementChildren
- getElementChildrenCount
- getElementColShape
- getElementCollisionsEnabled
- getElementData
- getElementDimension
- getElementDistanceFromCentreOfMassToBaseOfModel
- getElementHealth
- getElementID
- getElementInterior
- getElementMatrix
- getElementModel
- getElementParent
- getElementPosition
- getElementRadius
- getElementRotation
- getElementType
- getElementVelocity
- getElementsByType
- getElementsWithinColShape
- getElementsWithinRange
- getLowLODElement
- getRootElement
- isElement
- isElementAttached
- isElementCallPropagationEnabled
- isElementCollidableWith
- isElementDoubleSided
- isElementFrozen
- isElementInWater
- isElementLocal
- isElementLowLOD
- isElementOnScreen
- isElementStreamable
- isElementStreamedIn
- isElementSyncer
- isElementWaitingForGroundToLoad
- isElementWithinColShape
- setElementAlpha
- setElementAngularVelocity
- getElementAngularVelocity
- setElementAttachedOffsets
- setElementCallPropagationEnabled
- setElementCollidableWith
- setElementCollisionsEnabled
- setElementData
- setElementDimension
- setElementDoubleSided
- setElementFrozen
- setElementHealth
- setElementID
- setElementInterior
- setElementMatrix
- setElementModel
- setElementParent
- setElementPosition
- setElementRotation
- setElementStreamable
- setElementVelocity
- setLowLODElement