ResetVehicleComponentScale

From Multi Theft Auto: Wiki
Revision as of 16:41, 27 June 2019 by Forkerer (talk | contribs) (initial version)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

ADDED/UPDATED IN VERSION 1.5.6 r14489:

This function reset to default component scale for vehicle.

Syntax

bool resetVehicleComponentScale ( vehicle theVehicle, string theComponent )

OOP Syntax Help! I don't understand this!

Method: vehicle:resetComponentScale(...)


Required Arguments

  • theVehicle: The vehicle you wish to reset component scale.
  • theComponent: A vehicle component (this is the frame name from the model file of the component you wish to modify)

Returns

Returns true if the scale of the component was reset, false otherwise.

Example

Example 1: This example would change the scale of the component when the player enters a vehicle and resets it when he exit.


addEventHandler("onClientVehicleEnter", getRootElement(),
 function(player,seat)
    local getComponent = getVehicleComponents(source) -- returns table with all the components of the vehicle
    for k in pairs (getComponent) do
       local x, y, z = getVehicleComponentScale(source, k) --get the scale of the component
       setVehicleComponentScale(source, k, x*2, y*2, z*2) -- double the sizes
    end
 end
)
 
addEventHandler("onClientVehicleExit", getRootElement(),
 function(player, seat)
    local getComponent = getVehicleComponents(source) -- returns table with all the components of the vehicle
    for k in pairs (getComponent) do
       resetVehicleComponentScale(source, k) -- resets the scale of the component
    end
 end
)

See Also