Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 554 Bytes

File metadata and controls

14 lines (10 loc) · 554 Bytes

ActionUtility

static class in AdvancedSceneManager.Callbacks

Description

Contains utility functions for System.Action.

Static Methods

Member Description
void LogInvoke(Action action) Tries to invoke the action, then logs error to the console if an error occurred.
void TryInvoke(Action action) Tries to invoke the action, eats the exception.
bool TryInvoke(Action action, out Exception exception) Tries to invoke the action.