better rewording

This commit is contained in:
Juan Linietsky 2016-06-11 17:25:43 -03:00
parent 375fbe5c7c
commit db1e9bac79
1 changed files with 1 additions and 1 deletions

View File

@ -718,7 +718,7 @@ void Spatial::look_at(const Vector3& p_target, const Vector3& p_up_normal) {
} }
if (p_up_normal.cross(p_target-lookat.origin)==Vector3()) { if (p_up_normal.cross(p_target-lookat.origin)==Vector3()) {
ERR_EXPLAIN("Up vector and direction between node origin and target align, look_at() failed"); ERR_EXPLAIN("Up vector and direction between node origin and target are aligned, look_at() failed");
ERR_FAIL(); ERR_FAIL();
} }
lookat=lookat.looking_at(p_target,p_up_normal); lookat=lookat.looking_at(p_target,p_up_normal);