Up to date

This page is up to date for Godot 4.2. If you still find outdated information, please open an issue.

跨語言腳本撰寫

在 Godot 中可以依照需求來混合使用不同的腳本語言。這表示,單一專案內可以同時以 C# 與 GDScript 來定義節點。本頁將介紹如何讓兩個以不同語言撰寫的節點該如何互動。

下列兩個腳本會在本頁中都會用來作為參考。

extends Node

var my_field: String = "foo"

func print_node_name(node: Node) -> void:
    print(node.get_name())

func print_array(arr: Array) -> void:
    for element in arr:
        print(element)

func print_n_times(msg: String, n: int) -> void:
    for i in range(n):
        print(msg)

實體化節點

若不使用場景樹中的節點,則可以直接從程式碼中實體化節點。

在 GDScript 中實體化 C# 節點

從 GDScript 中使用 C# 並不需花費額外功夫。載入後 (請參見 以類別當作資源) 便可以使用 new() 來實體化腳本。

var my_csharp_script = load("res://Path/To/MyCSharpNode.cs")
var my_csharp_node = my_csharp_script.new()

警告

建立 .cs 腳本後,請記得 Godot 類別與 .cs 檔案本身的名字。若與檔名相同的類別不存在與檔案中,則會看到這個錯誤:Invalid call. Nonexistent function `new` in base

舉例來說,MyCoolNode.cs 應該包含名為 MyCoolNode 的類別。

你也需要檢查 .cs 檔案是否在專案中的 .csproj 檔案中參照。否則也會出現相同的錯誤。

你也需要檢查 .cs 檔案是否在專案中的 .csproj 檔案中參照。否則也會出現相同的錯誤。

在 C# 中實體化 GDScript 節點

在 C# 這邊,所有東西的運作方式都一樣。載入後,GDScript 便可以使用 GDScript.New() 來實體化。

GDScript MyGDScript = GD.Load<GDScript>("res://path/to/my_gd_script.gd");
GodotObject myGDScriptNode = (GodotObject)MyGDScript.New(); // This is a GodotObject.

這裡我們用的是 Object ,但可以使用任何如 型別轉換 內說明的型別轉換方式。

存取欄位

在 GDScript 中存取 C# 欄位

要從 GDScript 存取 C# 欄位很簡單,沒什麼好擔心的。

print(my_csharp_node.myField) # bar
my_csharp_node.myField = "BAR"
print(my_csharp_node.myField) # BAR

在 C# 中存取 GDScript 欄位

由於 C# 是靜態型別,從 C# 中存取 GDScript 就稍微有點複雜,我們需要使用 Object.Get()Object.Set() 。第一個參數即為欲存取欄位的名稱。

GD.Print(myGDScriptNode.Get("my_field")); // foo
myGDScriptNode.Set("my_field", "FOO");
GD.Print(myGDScriptNode.Get("my_field")); // FOO

請記得當設定欄位值時,使用的型別應該是 GDScript 那段能認得的型別。特別是在使用如 doc_gdscript` 中說明的內建型別或擴充了 Object 的類別時。

呼叫方法

在 GDScript 中呼叫 C# 方法

同樣地,從 GDScript 中呼叫 C# 方法應該很簡單。封送處理程式會儘可能地將參數的型別轉換為符合函式簽章的型別。若無法自動轉換,則會看到這個錯誤: Invalid call. Nonexistent function `FunctionName`

my_csharp_node.PrintNodeName(self) # myGDScriptNode
# my_csharp_node.PrintNodeName() # This line will fail.

my_csharp_node.PrintNTimes("Hello there!", 2) # Hello there! Hello there!

my_csharp_node.PrintArray(["a", "b", "c"]) # a, b, c
my_csharp_node.PrintArray([1, 2, 3]) # 1, 2, 3

在 C# 中呼叫 GDScript 方法

從 C# 中呼叫 GDScript 方法則需要使用 Object.Call() 。第一個參數為欲呼叫的函式名稱,接下來的參數則會被傳入該方法中。

myGDScriptNode.Call("print_node_name", this); // my_csharp_node
// myGDScriptNode.Call("print_node_name"); // This line will fail silently and won't error out.

myGDScriptNode.Call("print_n_times", "Hello there!", 2); // Hello there! Hello there!

string[] arr = new string[] { "a", "b", "c" };
myGDScriptNode.Call("print_array", arr); // a, b, c
myGDScriptNode.Call("print_array", new int[] { 1, 2, 3 }); // 1, 2, 3
// Note how the type of each array entry does not matter as long as it can be handled by the marshaller.

警告

如上所示,若呼叫方法的第一個參數為陣列,則需要將其轉換型別為 object 。否則,該陣列的每個元素都會被當作各個單一參數,進而不符合函式簽章。

繼承

GDScript 檔案不能繼承 C# 腳本。同樣地,C# 腳本也不能繼承 GDScript 檔案。由於要實作這個功能會很複雜,此一限制應該也會延續到未來的版本中。 請參考 這個 GitHub Issue (英文) 來瞭解詳情。