Hello.
I need fast way to get landscape height at any point because this operation will performs about 300000 times in second. LineTrace is too slow for this task.
I found method ALandscapeProxy::GetHeightValues. This method returns information about the square brackets of the height points. Every four height points represent a square, but this square is divided into two triangles like on screenshot.
So I need this triangles data for caching in memory. How can I extract this data?
Or maybe there is another method to find the height at any point?