BB.LevelButton.SetLock C# (CSharp) Method

SetLock() public method

public SetLock ( bool val ) : void
val bool
return void
        public void SetLock(bool val)
        {
            _levelText.gameObject.SetActive(!val);
            _clearText.gameObject.SetActive(!val);
            _lock.gameObject.SetActive(val);
        }

Usage Example

Example #1
0
        private void InitLevelButton(LevelButton button, Level level)
        {
            button.SetLevel(level);

            var clearState = UserLevelClear.Get(World, level);

            if (clearState.HasValue)
            {
                button.SetAsClear(clearState.Value);
            }
            else
            {
                var unlocked   = UserLevelClear.Unlocked;
                var shouldLock = true;

                if (unlocked.HasValue)
                {
                    var unlockedValue     = unlocked.Value;
                    var isCurrentUnlocked = unlockedValue.World == World && unlockedValue.Level == level;
                    shouldLock = !isCurrentUnlocked;
                }

                button.SetLock(shouldLock);
                button.SetAsNotCleared();
            }
        }
All Usage Examples Of BB.LevelButton::SetLock