Antura.AnturaSpace.ShopConfirmationPanelUI.SetupForPurchase C# (CSharp) Method

SetupForPurchase() public method

public SetupForPurchase ( ) : void
return void
        public void SetupForPurchase()
        {
            bonesCostTextUI.text = ShopDecorationsManager.I.CurrentDecorationCost.ToString();
            bonesCostGo.SetActive(true);
        }

Usage Example

Ejemplo n.º 1
0
        private void HandlePurchaseConfirmationRequested()
        {
            showDragPanelTween.PlayBackwards();
            showPurchasePanelAlwaysAvailableTween.PlayBackwards();

            confirmationPanelUI.SetupForPurchase();

            ShopDecorationsManager.I.ResetSlotHighlights();

            AskForConfirmation(ShopDecorationsManager.I.ConfirmPurchase, ShopDecorationsManager.I.CancelPurchase);
        }
All Usage Examples Of Antura.AnturaSpace.ShopConfirmationPanelUI::SetupForPurchase