We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basis::looking_at()
use_model_front
4.3-stable
Ubuntu 24.04
The function declaration of Basis::looking_at() does not expose the last parameter use_model_front :
godot-cpp/include/godot_cpp/variant/basis.hpp
Line 227 in 6facde3
This is how Basis::looking_at() is described in Godot documentation :
Basis looking_at(target: Vector3, up: Vector3 = Vector3(0, 1, 0), use_model_front: bool = false) static
Workaround : negate the vector passed as p_target to make Basis::looking_at() work as when use_model_front is true.
p_target
true
Trivial
The text was updated successfully, but these errors were encountered:
p_use_model_front
Successfully merging a pull request may close this issue.
Godot version
4.3-stable
godot-cpp version
4.3-stable
System information
Ubuntu 24.04
Issue description
The function declaration of
Basis::looking_at()
does not expose the last parameteruse_model_front
:godot-cpp/include/godot_cpp/variant/basis.hpp
Line 227 in 6facde3
This is how
Basis::looking_at()
is described in Godot documentation :Workaround : negate the vector passed as
p_target
to makeBasis::looking_at()
work as whenuse_model_front
istrue
.Steps to reproduce
Trivial
Minimal reproduction project
Trivial
The text was updated successfully, but these errors were encountered: