SetupForPhoto() public method

public SetupForPhoto ( ) : void
return void
Ejemplo n.º 1
0
        private void HandlePhotoConfirmationRequested()
        {
            showShopPanelTween.PlayBackwards();
            showDragPanelTween.PlayBackwards();
            showPurchasePanelAlwaysAvailableTween.PlayBackwards();

            confirmationPanelUI.SetupForPhoto();

            AskForConfirmation(ShopPhotoManager.I.ConfirmPhoto, ShopPhotoManager.I.CancelPhoto);
        }
Ejemplo n.º 2
0
        private void HandlePhotoConfirmationRequested()
        {
            showShopPanelTween.PlayBackwards();
            showDragPanelTween.PlayBackwards();
            showPurchasePanelAlwaysAvailableTween.PlayBackwards();

            confirmationPanelUI.SetupForPhoto();

            if (AnturaSpaceScene.I.TutorialMode)
            {
                AskForConfirmation(ShopPhotoManager.I.ConfirmPhoto, null);
            }
            else
            {
                AskForConfirmation(ShopPhotoManager.I.ConfirmPhoto, ShopPhotoManager.I.CancelPhoto);
            }
        }