Skip to Main Content
Building an RPG with Unity 2018 - Second Edition
book

Building an RPG with Unity 2018 - Second Edition

by Vahé Karamian
July 2018
Intermediate to advanced content levelIntermediate to advanced
366 pages
7h 48m
English
Packt Publishing
Content preview from Building an RPG with Unity 2018 - Second Edition

Adding an inventory item agent

We need the means to interact with our inventory items. In order to do this, we will need to create a new script that will handle our interaction with the inventory items during game play. This will be coded in the InventoryItemAgent.cs script. At the moment, the script will just enable us to interact with the InventoryItem object through the IDE.

A listing of the script is as follows:

using UnityEngine;namespace com.noorcon.rpg2e{public class InventoryItemAgent : MonoBehaviour{public InventoryItem Item;}}

Very simply, in order for us to be able to interact with the GameObject, we would need to use a script that inherits MonoBehaviour. Go ahead and attach this script to your prefab. Now you can easily set up ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Hands-On Unity 2020 Game Development

Hands-On Unity 2020 Game Development

Nicolas Alejandro Borromeo
Unity 2018 Cookbook - Third Edition

Unity 2018 Cookbook - Third Edition

Matt Smith, Chico Queiroz, Jate Wittayabundit

Publisher Resources

ISBN: 9781788623469Supplemental Content