Click here to Skip to main content
15,880,503 members
Articles / Game Development

Day 98 of 100 Days of VR: Endless Flyer – Creating the Item Shop Scene and UI

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
6 Feb 2019CPOL6 min read 2K  
How to create the Item Shop Scene and UI

Introduction

Welcome back to day 98! Today, we are going to continue the work to create the item store. On the previous day, we created a shop button in our Game Over Canvas so that we could purchase power-up upgrades.

Currently, that button does nothing as we have yet to create our item store scene. Today, our goal is to:

  1. Create a new scene that we'll use to purchase upgrades
  2. Create the UI for our item store

Let’s get started.

Step 1: Create the Item Shop Scene

Step 1.1: Make the Scene

There are multiple ways to do this, in theory, we don’t have to make a new scene to show the item store. We could, in fact, make it part of the same scene and just make it another canvas that will appear.

However, we’ve rarely worked with Scenes, so I’m taking this opportunity to play around with it.

  1. In my project, the current scene is called scene, let’s rename it to be main. Make a new folder called Scenes and put it in there.
  2. Next up, let’s duplicate the main scene by pressing Ctrl + D and call it. I’m going to duplicate it because there are quite a bit of things that we want to keep.

Now in our shop scene, get rid of everything except:

  1. GvrEditorEmulator – This is the emulator that we use to emulate a Google Cardboard.
  2. Player – What we really need is the Game Over Camera and the GvrRticlePointer - the rest is not needed. Get rid of everything inside Player except for Game Over Camera
  3. Complex Standard 1 – This is our starting path that the player follows, we’re going to keep it as an environmental scenery,
  4. Event System – This game object hosts the Event System script that will allow the code to detect events like onMouseEnter, onMouseDown, etc.
  5. GvrEventSystem – Similar to Event System, this is Google’s implementation of the Event System that allows the event system to detect Cardboard related inputs, like our gaze as a pointer event (onPointerEnter, onPointerExit, etc.)

Everything else is not needed and will be re-added as necessary, but these will be the core components that we need for now.

Make sure to save our scene now, if you haven’t.

Step 1.2: Add our Scene to the Build Settings

Before we create the UI for the game, let’s add our scenes to our build settings. With this change, we can visit our shop scene from our main scene.

  1. Go to File > Build Settings in both main and shop and click Add Open Scene.
  2. Make sure that main is 0 and shop is 1, re-arrange them if necessary.

We should have something like this:

Image 1

Why is it important that we add our scenes in this order? You might recall on the previous day in the GameOverCanvasController, we had these snippets of code:

C#
public void ClickRestartButton()
{
    SceneManager.LoadScene(0);
}

public void ClickShopButton()
{
    SceneManager.LoadScene(1);
}

When we click the restart button, the SceneManager loads Scene 0, which in this case is our main scene and when we click the shop button, we load Scene 1, which is now the shop scene.

Now if we were to play our game and click on the Shop Button, we will be brought to the shop scene.

Step 2: Creating the UI for the Item Shop

Step 2.1: Create the Item Shop Canvas

Back in the shop scene, it’s time to make our new canvas for our Item Shop. To save some work, let’s take our existing Game Over Canvas and duplicate it.

  1. Drag our Game Over Canvas from the Prefabs folder and then rename it Item Store Canvas.
  2. Remove the Game Over Canvas Controller script in the game object, we’ll make a new one.
  3. Rename Game Over Panel to Item Store Panel.
  4. Remove all of child game objects in Item Store Panel.

To note, some special properties that we have:

  1. In the Canvas component in our Item Shop Canvas, the Render Mode is World Space, otherwise, it won’t appear in VR.
  2. In the Item Shop Panel, add the Gvr Pointer Graphic Raycaster script to the game object. This will ensure that we can interact with our UI element

Our current structure looks something like this:

Image 2

Before we go and create the UI, here’s what we want to make:

Image 3

We have 11 UI components:

  • 3 Text for our power-up
  • 3 icons of our power-up (they’re our power-up game objects)
  • 3 Buttons to purchase the power-up
  • A Text showing our coins
  • A Button taking us back to the game

Here’s what they look like in our hierarchy:

Image 4

At this point, I want to say we should be comfortable with creating UIs, so I’ll just speed through this part.

Note: The position used might vary though depending on where your camera is set, so I’m going to omit that part and leave it to your own adjustment at certain points.

  1. Change Item Store Canvas to have a Width of 150,
  2. Create 3 new Text UI game object and child it to Item Store Panel, these will be the Titles we have in our game object. I changed the Font Size to be 18 and the Scale value to be (0.5, 0.5, 0.5). Width to be 120 and Height to be . From there, adjust the Pos X and Pos Y so they look like the picture above.
  3. For the 3 icons, we used our power-up prefab located in the Prefab. Drag them into the scene, make them a child of Item Store Panel and move their position around so that we can see them properly. One thing to mention, the particle effect for the Rocket doesn’t appear if it’s too far away so I had to move it a bit closer compared to the other game objects.
  4. Create 3 Button UI game objects and child it to Item Store Panel, these will be our Buy buttons that we will use to purchase our upgrades. Change the Scale to be (0.2, 0.2, 1), the Width to be 160 and the Height to be 30.
  5. Create a Button UI game object and child it to Item Store Panel, this will be our Start Game Button, the Scale is (0.5, 0.5, 0.5), width is 160, and height is
  6. Create a Text UI game object and child it to Item Store Panel, call it Coin Text, this will be used to display the number of coins we have.

And that’s it, we’ll now have a UI that’s like what I have made.

End of Day 98

With the creation of our new Item Store UI, it’s time to call it a day!

To recap what we did today, we:

  1. Created a new scene for our Item Store
  2. Created the UI for our Item Store scene.

I’m stopping at this point because to continue integrating the UI with code, we’re going to have to create some data models that define how strong a power-up becomes, how much they cost, and what level we have them at and that can be a whole other topic by itself.

The next article will be pretty big, so look forward to it!

Day 97100 Days of VR | Day 99

Home

The post Day 98 of 100 Days of VR: Endless Flyer – Creating the Item Shop Scene and UI appeared first on Coding Chronicles.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
Joshua is a passionate software developer working in the Seattle area. He also has experience with developing web and mobile applications, having spent years working with them.

Joshua now finds his spare coding time spent deep in the trenches of VR, working with the newest hardware and technologies. He posts about what he learns on his personal site, where he talks mostly about Unity Development, though he also talks about other programming topic that he finds interesting.

When not working with technology, Joshua also enjoys learning about real estate investment, doing physical activities like running, tennis, and kendo, and having a blast with his buddies playing video games.

Comments and Discussions

 
-- There are no messages in this forum --