diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-27 10:27:01 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-27 10:27:01 +0100 |
commit | 01b5644785f19458dc00b92937b9d36304beae16 (patch) | |
tree | 5cadee86fc94572574e6f26edade3c9736fc43b0 /doc/classes/AABB.xml | |
parent | d1e5903c67956707948b1de370b807e3aad395b7 (diff) | |
parent | 1aceacaa6b0820629586d49fc6d3d8ba7f1694eb (diff) |
Merge pull request #69547 from raulsntos/dotnet/pascal-case
C#: Renames to follow .NET naming conventions
Diffstat (limited to 'doc/classes/AABB.xml')
-rw-r--r-- | doc/classes/AABB.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/AABB.xml b/doc/classes/AABB.xml index ca454cafa3..2c5337eea3 100644 --- a/doc/classes/AABB.xml +++ b/doc/classes/AABB.xml @@ -66,7 +66,7 @@ [/gdscript] [csharp] // position (-3, 2, 0), size (1, 1, 1) - var box = new AABB(new Vector3(-3, 2, 0), new Vector3(1, 1, 1)); + var box = new Aabb(new Vector3(-3, 2, 0), new Vector3(1, 1, 1)); // position (-3, -1, 0), size (3, 4, 2), so we fit both the original AABB and Vector3(0, -1, 2) var box2 = box.Expand(new Vector3(0, -1, 2)); [/csharp] |