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

Class UnrealEngineOutput

tests.py:6–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import tests
5
6class UnrealEngineOutput:
7 def __init__(self, logger):
8 self.logger = logger
9 def write(self, buf):
10 self.logger(buf)
11 def flush(self):
12 return
13
14sys.stdout = UnrealEngineOutput(ue.log)
15sys.stderr = UnrealEngineOutput(ue.log_error)

Callers 1

tests.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected