mirror of
https://github.com/stan220/godot-docs.git
synced 2026-09-08 18:29:11 +00:00
Fix in the C# code example
The keyword `extends` is used in Java to extend/inherit from another class, but in C# the correct syntax is just the colon mark `:` Also rectified one part of the code where the example is extending from Object, although it would not cause any trouble, all classes in C# already derive from `Object` by default.
This commit is contained in:
@@ -70,7 +70,7 @@ access.
|
||||
|
||||
// Tool script added for the sake of the "const [Export]" example.
|
||||
[Tool]
|
||||
public MyType : extends Object
|
||||
public MyType
|
||||
{
|
||||
// Property initializations load during Script instancing, i.e. .new().
|
||||
// No "preload" loads during scene load exists in C#.
|
||||
@@ -472,7 +472,7 @@ accesses:
|
||||
.. code-tab:: csharp
|
||||
|
||||
// Child.cs
|
||||
public class Child extends Node
|
||||
public class Child : Node
|
||||
{
|
||||
public FuncRef FN = null;
|
||||
|
||||
@@ -484,7 +484,7 @@ accesses:
|
||||
}
|
||||
|
||||
// Parent.cs
|
||||
public class Parent extends Node
|
||||
public class Parent : Node
|
||||
{
|
||||
public Node Child;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user