unreal python commandlet print log
import unreal
unreal.log_warning("your message")
unreal.log_error("your message")
unreal.log("your message") 似乎不会在终端打印,最好用上面的两个,但是命令行加上 -stdout -FullStdOutLogOutput 的话,是可以输出的,print的也能输出
2023-11-08 23:03:28
import unreal
unreal.log_warning("your message")
unreal.log_error("your message")
unreal.log("your message") 似乎不会在终端打印,最好用上面的两个,但是命令行加上 -stdout -FullStdOutLogOutput 的话,是可以输出的,print的也能输出