Connor, If I do entity_set_vector(ent, EV_VEC_angles, angles);
when angles = { 45.0, 0.0, 0.0 }, then entity would look like this -> ' \ '.
The problem is that when you try to stand on that block, you sense like its ' | ' (an invisible box which you stand on). Well I believe these are the mins and max sizes:
PHP Code:
entity_get_vector(ent, EV_VEC_mins, size_min);
entity_get_vector(ent, EV_VEC_maxs, size_max);
My question is, whenever I supply parameters to size_min and size_max then I re-set it with entity_set_vector, it will always create me a box, means I can not create the invisible box to be like that ' \ ', only its angels to be set like that. Because when I give parameters in size_min and size_max, I give X, Y and Z. means I give parameters to making a
box, and a box can not be like that ' \ ' (atleast with size_min and size_max, probably I am missing some function that does that).
My main point is that I see from the angles set the object standing like this ' \ ', but when trying to stand on it you sense that its like this ' | '.
How do I set the actual box to be like this ' \ ' the same as it is viewed?
__________________