ObjectHeight
Returns the hight of a WowGameObject
.
ObjectHeight(--[[(1)]]objectReference) : height | false
- See Object Reference for more information on possible values.
Example
Get the players height.
local height = ObjectHeight('player')
Do something with the heights of all objects.
for i, object in ipairs(Objects()) do local height = ObjectHeight(object) -- do something with heightend