File size: 401 Bytes
ea562e8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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] );
__________________