MCPcopy Create free account
hub / github.com/20tab/UnrealEnginePython / FLogMessage

Class FLogMessage

Source/PythonConsole/Private/SPythonLog.h:16–27  ·  view source on GitHub ↗

* A single log message for the output log, holding a message and * a style, for color and bolding of the message. */

Source from the content-addressed store, hash-verified

14* a style, for color and bolding of the message.
15*/
16struct FLogMessage
17{
18 TSharedRef<FString> Message;
19 FName Style;
20
21 FLogMessage(const TSharedRef<FString>& NewMessage, FName NewStyle = NAME_None)
22 : Message(NewMessage)
23 , Style(NewStyle)
24 {
25 }
26
27};
28
29/**
30 * Console input box with command-completion support

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected