Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • 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 beginnerskyboxshopbegginerskyboxes

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.

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

Changing skyboxes? 1 Answer

How to make that the camera will not go through the walls? 1 Answer

Unity 5 procedural skybox with working bottom 1 Answer

HDRP Rotate Skybox in Time DeltaTime 2 Answers

Custom procedural skybox 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges