GDScript 文档注释

GDScript 文档注释也可以用来为你的代码中的成员提供文档说明。普通注释和文档注释有两点区别,其一:文档注释均以 ## 开头;其二:文档注释必须写在成员声明之前,亦或写于脚本顶部来为脚本提供基本说明。若使用文档注释注释了导出变量,则可在编辑器中通过悬停窗来查看该导出变量的文档注释。文档注释也可以由编辑器生成为 XML 文档。

为脚本编写文档

使用文档注释编写脚本文档时,必须写于成员声明之前。这里推荐大家将脚本文档分为以下三块编写。

  • 脚本类概述。

  • 脚本类详细描述。

  • 教程与特殊标记——废弃标记/实验性标记。

为了将这些部分区分开来,文档注释采用了一些特殊标记。特殊标记须写于文本行开头(忽略其之前的空格),且需要以 @ 符号开头,后接标记名。

标记

概述

无标记,仅位于文档开头部分。

描述

无标记,用一行空的文档注释行来与文档概述隔开。

文字教程

@tutorial(标题写在此处): https://example.com

已弃用

@deprecated
@deprecated: 请改用 [AnotherClass]。

实验性

@experimental
@experimental: 该类不稳定

例如:

  1. extends Node2D
  2. ## A brief description of the class's role and functionality.
  3. ##
  4. ## The description of the script, what it can do,
  5. ## and any further detail.
  6. ##
  7. ## @tutorial: https://example.com/tutorial_1
  8. ## @tutorial(Tutorial 2): https://example.com/tutorial_2
  9. ## @experimental

警告

若标记名和冒号中间存在空格,如 @tutorial :,则不会将该标记视为有效标记,该无效标记将会被引擎忽略。

备注

文档注释若描述超过一行,则改行文档注释文本的末尾空格与下一行文档注释文本的开头空格将会在显示时自动缩合成一个空格,且不会换行。若必须换行,请使用换行符 [br] 。也可见下方的 BBCode and class reference

为脚本类成员编写文档

脚本类成员也可以使用文档注释来生成对应文档说明:

  • 内部类

  • 常量

  • 函数

  • 信号

  • 变量

  • 枚举

  • 枚举值

对于脚本类成员,为其编写文档注释时应写在该成员及修饰该成员的注解(若存在注解)之前。在编写脚本类成员的文档注释时也可以进行多行编写,但每行均须以双井号 ## 开头,以保证这几行的内容均为该成员的文档注释。

标记

描述

无标记。

已弃用

@deprecated
@deprecated: 请改用 [member another]。

实验性

@experimental
@experimental: 该方法尚未完善。

例如:

  1. ## The description of the variable.
  2. ## @deprecated: Use [member other_var] instead.
  3. var my_var

或者你也可以手动调用 sphinx-build 程序来构建文档::

  1. enum MyEnum { ## My enum.
  2. VALUE_A = 0, ## Value A.
  3. VALUE_B = 1, ## Value B.
  4. }
  5. const MY_CONST = 1 ## My constant.
  6. var my_var ## My variable.
  7. signal my_signal ## My signal.
  8. func my_func(): ## My func.
  9. pass
  10. class MyClass: ## My class.
  11. pass

只要脚本内容发生变化,该脚本的类文档便会自动更新。若存在以下划线开头的变量或函数,则该变量/函数就会视为私有变量/私有函数,不会显示在该脚本的脚本类文档当中。

完整脚本示例

  1. extends Node2D
  2. ## A brief description of the class's role and functionality.
  3. ##
  4. ## The description of the script, what it can do,
  5. ## and any further detail.
  6. ##
  7. ## @tutorial: https://example.com/tutorial_1
  8. ## @tutorial(Tutorial 2): https://example.com/tutorial_2
  9. ## @experimental
  10. ## The description of a constant.
  11. const GRAVITY = 9.8
  12. ## The description of a signal.
  13. signal my_signal
  14. ## This is a description of the below enum.
  15. enum Direction {
  16. ## Direction up.
  17. UP = 0,
  18. ## Direction down.
  19. DOWN = 1,
  20. ## Direction left.
  21. LEFT = 2,
  22. ## Direction right.
  23. RIGHT = 3,
  24. }
  25. ## The description of the variable v1.
  26. var v1
  27. ## This is a multiline description of the variable v2.[br]
  28. ## The type information below will be extracted for the documentation.
  29. var v2: int
  30. ## If the member has any annotation, the annotation should
  31. ## immediately precede it.
  32. @export
  33. var v3 := some_func()
  34. ## As the following function is documented, even though its name starts with
  35. ## an underscore, it will appear in the help window.
  36. func _fn(p1: int, p2: String) -> int:
  37. return 0
  38. # The below function isn't documented and its name starts with an underscore
  39. # so it will treated as private and will not be shown in the help window.
  40. func _internal() -> void:
  41. pass
  42. ## Documenting an inner class.
  43. ##
  44. ## The same rules apply here. The documentation must
  45. ## immediately precede the class definition.
  46. ##
  47. ## @tutorial: https://example.com/tutorial
  48. ## @experimental
  49. class Inner:
  50. ## Inner class variable v4.
  51. var v4
  52. ## Inner class function fn.
  53. func fn(): pass

文档注释标记 @deprecated@experimental

你可以将一个类或其成员标记为已废弃成员或者实验性成员,标记后,引擎就会在文档查看器里自动添加上对应提示符号。你也可以选择性地提供一条对不再支持该API的原因解释。这些对插件和代码库的作者而言无疑是一大福音。

../../../_images/deprecated_and_experimental_tags.webp

  • 已废弃 标记不推荐的 API,该 API 可能会在未来的主要版本中移除或进行不兼容的更改。保留 API 通常是为了向后兼容。

  • 实验性 标记了一个不稳定的新 API,该 API 可能会在当前主要分支中更改或移除。不建议在生产代码中使用该 API。

备注

当然,技术上来说,你可以给同一个类/成员同时使用 @deprecated and @experimental 这两个标记,不过并不推荐这样做,会比较反直觉。

BBCode 与类参考

Godot 的类参考支持类似 BBCode 的标签。这些标签用在文档中时可以让文本格式更加美观。另见类参考 BBCode。注意:与 RichTextLabel 的 :ref:`BBCode <doc_bbcode_in_richtextlabel>`会稍有不同。

每从其他类里链接一个成员,你都要在成员名前面加上该类的类名。而链接类内成员时,类名可省略。

可用的标记如下:

描述

示例

结果

[Class]
链接类

移动 [Sprite]。

移动 Sprite2D

[annotation Class.name]
链接到注解

见 [annotation @GDScript.@rpc].

@GDScript.@export

[constant Class.name]
链接到常量

见 [constant Color.RED]。

Color.RED

[enum Class.name]
链接到枚举

见 [enum Mesh.ArrayType]。

Mesh.ArrayType

[member Class.name]
链接到成员(属性)

获取 [member Node2D.scale]。

获取 Node2D.scale.

[method Class.name]
链接到方法

调用 [method Node3D.hide].

调用 Node3D.hide()

[constructor Class.name]
链接到内置构造函数

使用 [constructor Color.Color].

使用 Color.Color

[operator Class.name]
链接到内置运算符

使用 [operator Color.operator ].

使用 Color.operator

[signal Class.name]
链接到信号

发送 [signal Node.renamed]。

发送 Node.renamed

[theme_item Class.name]
链接到主题项

见 [theme_item Label.font]。

Label.font

[param name]
参数名(用作代码)

用 [param size] 来表示大小。

size 表示大小。

[br]
换行
行 1。[br]
行 2。
行 1。
行 2。
[lb] [rb]
分别为 []

[lb]b[rb]text[lb]/b[rb]

[b]text[/b]

[b] [/b]
粗体

[b]请勿[/b] 调用该方法

请勿调用该方法。

[i] [/i]
斜体

返回 [i]全局[/i] 位置。

返回 全局位置。

[u] [/u]
下划线

[u]始终[/u] 调用该方法。

Always use this method.
[s] [/s]
删除线

[s]过期信息。[/s]

Outdated information.
[color] [/color]
Color

[color=red]错误![/color]

Error!
[font] [/font]
使用指定字体行文

[font=res://mono.ttf]LICENSE[/font]

LICENSE
[img] [/img]
插入图像

[img width=32]res://icon.svg[/img]

../../../_images/icon.svg
[url] [/url]
超链接
[center] [/center]
水平居中

[center]2 + 2 = 4[/center]

2 + 2 = 4
[kbd] [/kbd]
键盘和鼠标快捷键

按下 [kbd]Ctrl + C[/kbd] 组合键。

按下 :kbd:</a>Ctrl + C组合键。

[code] [/code]
嵌入式代码片段

返回[code]true[/code]。

返回 true

[codeblock]
[/codeblock]
多行代码块

见下文.

见下文.

备注

  1. 目前只有 @GDScript 有注解。

  2. [kbd][/kbd] 之间的 BBCode 代码均无效。

  3. [code][/code] 之间的 BBCode 代码均无效。

  4. [codeblock][/codeblock] 之间的 BBCode 代码均无效。

警告

使用 [codeblock]来制作预格式化代码块。在 [codeblock] 区域中,请始终使用四个空格进行缩进,解析器会删除制表符。

  1. ## Do something for this plugin. Before using the method
  2. ## you first have to [method initialize] [MyPlugin].[br]
  3. ## [color=yellow]Warning:[/color] Always [method clean] after use.[br]
  4. ## Usage:
  5. ## [codeblock]
  6. ## func _ready():
  7. ## the_plugin.initialize()
  8. ## the_plugin.do_something()
  9. ## the_plugin.clean()
  10. ## [/codeblock]
  11. func do_something():
  12. pass

[codeblock] 默认会高亮 GDScript 语法,用 lang 修饰符即可对其语法高亮所用的语言进行修改。目前支持下列语言的高亮:

  • [codeblock lang=text] 禁用语法高亮;

  • [codeblock lang=gdscript] 高亮 GDScript 语法;

  • [codeblock lang=csharp] 高亮 C# 语法(仅.NET版本有效)。