• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Azeraia · Aug 19, 2020 at 04:32 PM · scripting beginnerskyboxbegginershopskyboxes

How i can make a shop for skybox/background?

Hello friends, someone can help me, please? I want to make a shop where you can buy new Skybox / background with the diamonds you have earned from the game...I don't have a code for now but at least an idea or an example would help! Thanks in advice!

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by Aviryx · Aug 19, 2020 at 04:45 PM

You could use Scriptable Objects to store player/shop data.


https://docs.unity3d.com/Manual/class-ScriptableObject.html https://learn.unity.com/tutorial/introduction-to-scriptable-objects


 using UnityEngine;

 [CreateAssetMenu(fileName = "PlayerData", menuName = "Data/PlayerData")]
 public class PlayerDataScriptableObject : ScriptableObject
 {
     public int diamonds;
 }

Then apply the same logic to store data about if the player "owns" a particular skybox.


 using UnityEngine;

 [CreateAssetMenu(fileName = "ShopData", menuName = "Data/ShopData")]
 public class ShopDataScriptableObject : ScriptableObject
 {
     public bool skybox56;
 }


and then have some kind of shop UI with a button that allows them to purchase the skybox.


 public sealed class ShopManager : MonoBehaviour
 {
     public PlayerDataScriptableObject playerData;
     public ShopDataScriptableObject shopData;

     public Button skybox56;

     void Start()
     {
         skybox56.onClick.AddListener(BuySkybox56);
     }

     private void BuySkybox56()
     {
         if (playerData.diamonds > 100)
         {
             shopData.skybox56 = true;
             playerData.diamonds -= 100;
         }
     }
 }
Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Azeraia · Aug 20, 2020 at 02:27 PM 0
Share

Thanks! i will try to follow this steps!

avatar image
1

Answer by yavuzyayla · Aug 20, 2020 at 02:52 PM

You can use "Game Foundation" package. It is not verified yet but easy to use. For example to sell skybox you just need to create a Inventory Item and add an Asset Detail.

Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Azeraia · Aug 20, 2020 at 03:44 PM 0
Share

Thanks! And i cand find somewhere a tutorial on how to connect the script( that makes the skybox to change), with the unity in-game background / skybox? i tried to fin one, but i dont see one :/

avatar image yavuzyayla Azeraia · Aug 20, 2020 at 04:08 PM 0
Share

https://answers.unity.com/questions/551826/any-way-to-change-skybox-after-do-something.html

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

144 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Skybox is reflecting from game object in some devices? 0 Answers

Skybox is low quality no matter what the actual resolution is 0 Answers

trying to get an object to walk around in a small circle pattern horizontally. 1 Answer

How to create a spherical skybox??? 1 Answer

Trying to change a SkyBox material 1 Answer

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges