Amxxprogramer / EngFunc_SetOrigin.txt
RichieBurundi's picture
Upload 29 files
ea562e8 verified
raw
history blame contribute delete
401 Bytes
Fakemeta function :
Code:
EngFunc_SetSize
Description :
Sets the bounds of an entity.
Usage :
Code:
engfunc(EngFunc_SetSize, iEnt, Float:fMins[3], Float:fMaxs[3]);
Parameters
iEnt = Entity index
fMins[3] = Mins boundings values (x,y,z)
fMaxs[3] = Maxs boundings values (x,y,z)
Engine Replacement :
Code:
entity_set_size( index, Float:mins[3], Float:maxs[3] );
__________________