diff options
| author | Bojidar Marinov | 2017-07-23 14:37:26 +0300 |
|---|---|---|
| committer | Bojidar Marinov | 2017-07-23 14:37:26 +0300 |
| commit | 140f189a65f991d5b44d49ad6b710f7512862d16 (patch) | |
| tree | 514c34550c6df621353e0163ebbeabf2e14ff8db /scene/3d/spatial.cpp | |
| parent | aa798ebf8fcc0a72c837c7daea63e6d9ef51ff30 (diff) | |
| download | godot-140f189a65f991d5b44d49ad6b710f7512862d16.tar.gz godot-140f189a65f991d5b44d49ad6b710f7512862d16.tar.zst godot-140f189a65f991d5b44d49ad6b710f7512862d16.zip | |
Diffstat (limited to 'scene/3d/spatial.cpp')
| -rw-r--r-- | scene/3d/spatial.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scene/3d/spatial.cpp b/scene/3d/spatial.cpp index 20c2cc1eb..e3c2899cd 100644 --- a/scene/3d/spatial.cpp +++ b/scene/3d/spatial.cpp @@ -674,6 +674,16 @@ void Spatial::look_at_from_pos(const Vector3 &p_pos, const Vector3 &p_target, co set_global_transform(lookat); } +Vector3 Spatial::to_local(Vector3 p_global) const { + + return get_global_transform().affine_inverse().xform(p_global); +} + +Vector3 Spatial::to_global(Vector3 p_local) const { + + return get_global_transform().xform(p_local); +} + void Spatial::set_notify_transform(bool p_enable) { data.notify_transform = p_enable; } @@ -756,6 +766,9 @@ void Spatial::_bind_methods() { ClassDB::bind_method(D_METHOD("look_at", "target", "up"), &Spatial::look_at); ClassDB::bind_method(D_METHOD("look_at_from_pos", "pos", "target", "up"), &Spatial::look_at_from_pos); + ClassDB::bind_method(D_METHOD("to_local", "global_point"), &Spatial::to_local); + ClassDB::bind_method(D_METHOD("to_global", "local_point"), &Spatial::to_global); + BIND_CONSTANT(NOTIFICATION_TRANSFORM_CHANGED); BIND_CONSTANT(NOTIFICATION_ENTER_WORLD); BIND_CONSTANT(NOTIFICATION_EXIT_WORLD); |
