StorySystem.CommonCommands.PauseCommand.ExecCommand C# (CSharp) Method

ExecCommand() protected method

protected ExecCommand ( StoryInstance instance, long delta ) : bool
instance StoryInstance
delta long
return bool
        protected override bool ExecCommand(StoryInstance instance, long delta)
        {
            instance.IsPaused = true;
            return false;
        }