Browse Source

C#: Remove outdated Quaternion documentation

Raul Santos 2 years ago
parent
commit
831dc13e1f
1 changed files with 0 additions and 9 deletions
  1. 0 9
      tutorials/scripting/c_sharp/c_sharp_differences.rst

+ 0 - 9
tutorials/scripting/c_sharp/c_sharp_differences.rst

@@ -445,15 +445,6 @@ Structs cannot have parameterless constructors in C#. Therefore, ``new Quaternio
 initializes all primitive members to their default value.
 Please use ``Quaternion.Identity`` for the equivalent of ``Quaternion()`` in GDScript and C++.
 
-The following methods were converted to a property with a different name:
-
-=====================  =============================================================
-GDScript               C#
-=====================  =============================================================
-``length()``           ``Length``
-``length_squared()``   ``LengthSquared``
-=====================  =============================================================
-
 Color
 -----