diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-07-03 23:43:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-03 23:43:33 +0200 |
commit | e54c7d5715e70c4ef08b6a3f7039c2bdf2473045 (patch) | |
tree | f782dfef613af8fa5c211d7069e061e380a1f7c2 /modules/gdnative/godot/godot_vector3.h | |
parent | 2036273f944084ccbe2483619d4f4b3de48a322c (diff) | |
parent | 44ecfb028d21975944b47b6496712a29f17f3848 (diff) |
Merge pull request #9457 from TwistedTwigleg/Fixed_Vector3_snap
Fixed syntax inconsistency in Vector3.snap and Vector3.snapped
Diffstat (limited to 'modules/gdnative/godot/godot_vector3.h')
-rw-r--r-- | modules/gdnative/godot/godot_vector3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/godot/godot_vector3.h b/modules/gdnative/godot/godot_vector3.h index 8e2aed8173..98d9ddf6ac 100644 --- a/modules/gdnative/godot/godot_vector3.h +++ b/modules/gdnative/godot/godot_vector3.h @@ -70,7 +70,7 @@ godot_vector3 GDAPI godot_vector3_normalized(const godot_vector3 *p_self); godot_vector3 GDAPI godot_vector3_inverse(const godot_vector3 *p_self); -godot_vector3 GDAPI godot_vector3_snapped(const godot_vector3 *p_self, const godot_real p_by); +godot_vector3 GDAPI godot_vector3_snapped(const godot_vector3 *p_self, const godot_vector3 *p_by); godot_vector3 GDAPI godot_vector3_rotated(const godot_vector3 *p_self, const godot_vector3 *p_axis, const godot_real p_phi); |