That was either fm :
PHP Code:
engfunc(EngFunc_SetSize, id, VEC_DUCK_HULL_MIN, VEC_DUCK_HULL_MAX)
engfunc(EngFunc_SetOrigin, id, g_flJumpOrigin[id])
either engine :
PHP Code:
entity_set_vector(id, EV_VEC_mins, VEC_DUCK_HULL_MIN)
entity_set_vector(id, EV_VEC_maxs, VEC_DUCK_HULL_MAX)
entity_set_origin(id, g_flJumpOrigin[id])
(entity_set_origin actually set first send SetSize with mins and maxs values)
Even if engine is a bit faster the fm, 3 natives is still lower than 2.
Code:
f | engine_set | 10000 | 0.007928 / 0.000001 / 0.000044
f | fm_set | 10000 | 0.006075 / 0.000001 / 0.000043
__________________