Files
XCEngine/docs/api/resources/resourcepath/getfullpath.md

460 B

ResourcePath::GetFullPath

Containers::String GetFullPath() const

获取完整路径。

详细描述:

返回存储的完整路径字符串。

返回: Containers::String,完整路径

复杂度: O(1)

示例:

ResourcePath path("textures/player.png");
Containers::String fullPath = path.GetFullPath();  // "textures/player.png"

相关文档