Class CeresExecutableLibrary
Provides Ceres runtime utility functions that can be called from Flow graphs.
[CeresGroup("Ceres")]
public class CeresExecutableLibrary : ExecutableFunctionLibrary
- Inheritance
-
CeresExecutableLibrary
- Inherited Members
Constructors
CeresExecutableLibrary()
public CeresExecutableLibrary()
Methods
CollectExecutableFunctions()
Collect all static executable functions in this library
protected override void CollectExecutableFunctions()
Flow_GetLogLevel()
Gets the current Ceres runtime log level.
[ExecutableFunction(ExecuteInDependency = true, SearchAliases = "Get LogLevel, LogLevel")]
[CeresLabel("Get Log Level")]
public static LogType Flow_GetLogLevel()
Returns
- LogType
The current Unity log type used as the Ceres log level.
Flow_SetLogLevel(LogType)
Sets the minimum Ceres log level used by runtime logging.
[ExecutableFunction(SearchAliases = "Set LogLevel, LogLevel")]
[CeresLabel("Set Log Level")]
public static void Flow_SetLogLevel(LogType logType)
Parameters
logTypeLogTypeThe Unity log type to use as the current Ceres log level.