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

SetupForPhoto() public method

public SetupForPhoto ( ) : void
return void
        public void SetupForPhoto()
        {
            bonesCostTextUI.text = ShopPhotoManager.I.CurrentPhotoCost.ToString();
            bonesCostGo.SetActive(true);
        }
    }

Usage Example

Example #1
0
        private void HandlePhotoConfirmationRequested()
        {
            showShopPanelTween.PlayBackwards();
            showDragPanelTween.PlayBackwards();
            showPurchasePanelAlwaysAvailableTween.PlayBackwards();

            confirmationPanelUI.SetupForPhoto();

            AskForConfirmation(ShopPhotoManager.I.ConfirmPhoto, ShopPhotoManager.I.CancelPhoto);
        }
All Usage Examples Of Antura.AnturaSpace.ShopConfirmationPanelUI::SetupForPhoto