removed wron return types, fixes #2483

removed console, which was obsolete and unused sine long long ago
This commit is contained in:
reduz
2015-12-29 18:46:21 -03:00
parent 196b3e03fc
commit 555ad5f8b7
4 changed files with 1 additions and 504 deletions

View File

@@ -187,7 +187,6 @@ Vector2 Vector2::snapped(const Vector2& p_by) const {
Vector2 Vector2::clamped(real_t p_len) const {
return *this;
real_t l = length();
Vector2 v = *this;
if (l>0 && p_len<l) {