Attention: Here be dragons

This is the latest (unstable) version of this documentation, which may document features not available in or compatible with released stable versions of Godot.

Godot 项目中的文件路径

本页面会讲解 Godot 项目中文件路径的工作原理。你会学到如何在项目中使用 res://user:// 标记来访问路径,以及 Godot 会在你的以及用户系统上的哪些位置存储项目和编辑器文件。

路径分隔符

为了让支持跨平台更方便,Godot 使用 UNIX 风格的路径分隔符(正斜杠 /)。在所有平台上都可以使用,包括 Windows

在 Godot 里写的不是类似 C:\Projects\Game 的路径,而应该写 C:/Projects/Game

有些路径相关的方法也支持 Windows 风格的路径分隔符(反斜杠\),不过需要写两个(\\),因为