EngineRestoreCOL: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Cazomino05 (talk | contribs) mNo edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Note box|Please note the loading order that is used in the examples as other orders can cause textures, collisions or the DFF not to load due to technical limitations}} | |||
{{Client function}}<!-- Change this to "Client function" or "Server function" appropriately--> | {{Client function}}<!-- Change this to "Client function" or "Server function" appropriately--> | ||
<!-- Describe in plain english what this function does. Don't go into details, just give an overview --> | <!-- Describe in plain english what this function does. Don't go into details, just give an overview --> |
Revision as of 12:07, 12 April 2013
This template is no longer in use as it results in poor readability.
This function restores the original collision model of the given model ID. Reverses the effect of engineReplaceCOL.
Syntax
bool engineRestoreCOL ( int modelID )
Required Arguments
- modelID: The ID of the model to restore the model of
Returns
Returns true if this function succeeds, false or nil if it fails for some reason.
Example
Click to collapse [-]
ClientClient-Side example for restoring object collision with default one.
function RestoreCollision ( ) engineRestoreCOL ( 3356 ) end addEvent ( "collisionRestore", true ) addEventHandler ( "collisionRestore", getRootElement(), RestoreCollision )
Click to collapse [-]
ServerServer-side example function for triggering the restore.
function RestoreCols ( ) triggerClientEvent ( "collisionRestore", getRootElement(), collisionRestore ) end addCommandHandler("restorecol", RestoreCols)
See Also
- engineAddImage
- engineApplyShaderToWorldTexture
- engineFreeModel
- engineGetModelFlags
- engineGetModelIDFromName
- engineGetModelLODDistance
- engineGetModelNameFromID
- engineGetModelPhysicalPropertiesGroup
- engineGetModelTextureNames
- engineGetModelTextures
- engineGetModelTXDID
- engineGetModelVisibleTime
- engineGetObjectGroupPhysicalProperty
- engineGetSurfaceProperties
- engineGetVisibleTextureNames
- engineImageGetFilesCount
- engineImageGetFiles
- engineImageGetFile
- engineImageLinkDFF
- engineImageLinkTXD
- engineImportTXD
- engineLoadCOL
- engineLoadDFF
- engineLoadIMG
- engineLoadIFP
- engineLoadTXD
- engineRemoveImage
- engineRemoveShaderFromWorldTexture
- engineReplaceAnimation
- engineReplaceCOL
- engineReplaceModel
- engineRequestModel
- engineResetModelFlags
- engineResetModelLODDistance
- engineResetSurfaceProperties
- engineRestoreAnimation
- engineRestoreCOL
- engineRestoreDFFImage
- engineRestoreModel
- engineRestoreModelPhysicalPropertiesGroup
- engineRestoreObjectGroupPhysicalProperties
- engineRestoreTXDImage
- engineRestreamWorld
- engineSetAsynchronousLoading
- engineSetModelFlag
- engineSetModelFlags
- engineSetModelLODDistance
- engineSetModelPhysicalPropertiesGroup
- engineSetModelVisibleTime
- engineSetObjectGroupPhysicalProperty
- engineSetSurfaceProperties
- engineStreamingFreeUpMemory
- engineStreamingGetUsedMemory