gpt4 book ai didi

c++ - 如何在虚幻引擎中记录来自字符串变量的消息?

转载 作者:行者123 更新时间:2023-12-02 01:19:41 27 4
gpt4 key购买 nike

我正在尝试从字符串变量记录消息,下面是我使用的代码

std::string s = "ss";//std::to_string(FPaths::GetPath("../"));
UE_LOG(LogTemp, Warning, *s);

但它不起作用,有人可以告诉我该怎么做吗? enter image description here

最佳答案

最后我在这里回答我自己的问题。

它无法编译,因为我需要在将字符串输入 UE_LOG 之前使用 TEXT 宏。

FString s = "ss";
UE_LOG(LogTemp, Warning, TEXT("%s"), *s);

//or

UE_LOG(LogTemp, Warning, TEXT("ss"));

//this should work
UE_LOG(LogTemp, Warning, TEXT("%s"), *FPaths::GetPath("../"));

应该使用 Unreal 版本的数据类型,而不是使用 std 库

关于c++ - 如何在虚幻引擎中记录来自字符串变量的消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38500220/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com