作为数据类型的类

数据类型是数据的一个属性,它告诉编译器或解释器程序员打算如何使用数据。
在 Godot 中,GDScript 类是引用类型(对象)。

  1. var example: Node2D = Node2D.new() # variable example is a Node2D data type

您还可以转换数据类型:

  1. var example: Node = Node2D.new() as Node # cast Node2D instanced object as Node