User Tools

Site Tools


public:t-vien-14-1:lab_2_materials

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:t-vien-14-1:lab_2_materials [2014/01/22 11:40] – [Procedure] hannespublic:t-vien-14-1:lab_2_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 16: Line 16:
   - **Create a Textured Object** In Blender, create a new object from scratch with some texturing, export it from there in the Autodesk FBX format and add to your scene in Unity. For this step follow the instructions on the [[public:t-vien-14-1:blendertexturing|Blender Model Export and UV Texturing]]   - **Create a Textured Object** In Blender, create a new object from scratch with some texturing, export it from there in the Autodesk FBX format and add to your scene in Unity. For this step follow the instructions on the [[public:t-vien-14-1:blendertexturing|Blender Model Export and UV Texturing]]
   - **Make Object Instance Sense Collision** Once you have instanced your new textured object as a **GameObject** in the scene, click on it in the **Hierarchy** tab and in the **Inspector** panel click on **Add Component** and use the search box to search for a ''Sphere Collider''. Add this collider component to your game object. In the ''Sphere Collider'' check the ''Is Trigger'' check box. You have now created an invisible sphere around your object, which generates a trigger event if something collides with it. You can control the radius of this sphere directly from the ''Radius'' property in the **Inspector** panel.   - **Make Object Instance Sense Collision** Once you have instanced your new textured object as a **GameObject** in the scene, click on it in the **Hierarchy** tab and in the **Inspector** panel click on **Add Component** and use the search box to search for a ''Sphere Collider''. Add this collider component to your game object. In the ''Sphere Collider'' check the ''Is Trigger'' check box. You have now created an invisible sphere around your object, which generates a trigger event if something collides with it. You can control the radius of this sphere directly from the ''Radius'' property in the **Inspector** panel.
-  - **Create a Pickable Behavior** You now have to add code to the object to tell it what to do when a collision is detected. In Unity, such behavior code is really just another component that can be added to game objects. We first have to create that compenent as an Asset, before we can attach it. So, in the **Project** panel, navigate to your ''Scripts'' folder (or create one under ''VIEN'' if you haven't already). Right-click inside that folder and select ''Create->C# Script''. Name the new script ''Pickable'', double-click it to open the editor and add the following method to the class that appears: <code cs>+  - **Create a Pickable Behavior** You now have to add code to the object to tell it what to do when a collision is detected. In Unity, such behavior code is really just another component that can be added to game objects. We first have to create that compenent as an Asset, before we can attach it. So, in the **Project** panel, navigate to your ''Scripts'' folder (or create one under ''VIEN'' if you haven't already). Right-click inside that folder and select ''Create->C# Script''. Name the new script ''Pickable'', double-click it to open the editor and add the following method to the class that appears: <code cpp>
  void OnTriggerEnter(Collider col) {  void OnTriggerEnter(Collider col) {
  if (col.gameObject.tag == "Player") {  if (col.gameObject.tag == "Player") {
Line 27: Line 27:
   - **Test Collision** Hit **Play**, you should be able to walk around and when you collide with the object it should get destroyed. However, you will see an error stating that "SendMessage Pickup has no receiver". This is because your object has sent a message to the player, expecting a method there with a matching name. We will add this method next.   - **Test Collision** Hit **Play**, you should be able to walk around and when you collide with the object it should get destroyed. However, you will see an error stating that "SendMessage Pickup has no receiver". This is because your object has sent a message to the player, expecting a method there with a matching name. We will add this method next.
   - **Create Inventory Behavior** In the same way you created the new ''Pickable'' script, create another C# script in your script folder called ''Inventory''. Edit this script in the following way:    - **Create Inventory Behavior** In the same way you created the new ''Pickable'' script, create another C# script in your script folder called ''Inventory''. Edit this script in the following way: 
-    - Add a public member variable to hold a sound: <code>public AudioClip pickupSound;</code> +    - Add a public member variable to hold a sound: <code cpp>public AudioClip pickupSound;</code> 
-    - Add a method, with the name of the pickup message, to play the sound when called:<code> void Pickup() {+    - Add a method, with the name of the pickup message, to play the sound when called:<code cpp> void Pickup() {
  AudioSource.PlayClipAtPoint (pickupSound, transform.position);  AudioSource.PlayClipAtPoint (pickupSound, transform.position);
  }</code>Save the code (Ctrl-S) and back in the scene, select your ''First Person Controller'' game object and in the **Inspector** press **Add Component** where you can use the search to find the ''Inventory'' script. Add it.  }</code>Save the code (Ctrl-S) and back in the scene, select your ''First Person Controller'' game object and in the **Inspector** press **Add Component** where you can use the search to find the ''Inventory'' script. Add it.
   - **Test Inventory Behavior** Once you have added the ''Inventory'' behavior to your player, you have to associate the ''pickupSound'' variable of the ''Inventory'' component in the **Inspector** panel with a sound asset. You can use whatever sound effect you like. You just have to make sure that the sound file is somewhere under the Unity ''Assets'' folder so that you can browse to it. You can either fill in the value for the sound file by pressing the litle target circle next to the edit box of the ''Pickup Sound'' property, or you can drag a sound from the **Project** panel right into the edit box. After you have provided the sound, you should play the scene and make sure you hear it when the player runs into the objet.   - **Test Inventory Behavior** Once you have added the ''Inventory'' behavior to your player, you have to associate the ''pickupSound'' variable of the ''Inventory'' component in the **Inspector** panel with a sound asset. You can use whatever sound effect you like. You just have to make sure that the sound file is somewhere under the Unity ''Assets'' folder so that you can browse to it. You can either fill in the value for the sound file by pressing the litle target circle next to the edit box of the ''Pickup Sound'' property, or you can drag a sound from the **Project** panel right into the edit box. After you have provided the sound, you should play the scene and make sure you hear it when the player runs into the objet.
-  - **Make a Pickable Object Prefab** In order to create multiple instances of your object, that now includes a behavior for being picked up, you can turn it into a **Prefab**. In the **Project** panel, navigate to your ''VIEN'' folder and create a new sub-folder called ''Prefabs''. Open that empty folder. Now drag the working instance of your object in the scene into this ''Prefabs'' folder (you are essentially storing the complete configuration of your game object into a template kind of structure that Unity calls a **Prefab**). Change the name of your new prefab object in the **Projects** panel into ''PickableObject'' or something like that (notice that the name also changes up in the scene). Now you can drag this prefab into your scene as many times as you want to make multple copies of it. If you wish to change any properties in all of them simultaneously, you can select the prefab instead of an object instance and use the **Inspector** to edit a property that then gets propegated to all instances of that prefab. +  - **Make a Pickable Object Prefab** In order to create multiple instances of your object, that now includes a behavior for being picked up, you can turn it into a **Prefab**. In the **Project** panel, navigate to your ''VIEN'' folder and create a new sub-folder called ''Prefabs''. Open that empty folder. Now drag the working instance of your object in the scene into this ''Prefabs'' folder (you are essentially storing the complete configuration of your game object into a template kind of structure that Unity calls a **Prefab**). Change the name of your new prefab object in the **Projects** panel into ''PickableObject'' or something like that (notice that the name also changes up in the scene). Now you can drag this prefab into your scene as many times as you want to make multiple copies of it. If you wish to change any properties in all of them simultaneously, you can select the prefab instead of an object instance and use the **Inspector** to edit a property that then gets propagated to all instances of that prefab. 
-  - **Add a Counter to Inventory** You should do this on your own. Maintain a state in the ''Inventory'' class that knows how many objects have been picked up. Display this number on the screen. To have a class write something onto the GUI, you override the ''void OnGUI()'' method of that class (inherited from ''MonoBehavior''. This method gets called whenever the GUI gets updated by Unity. Here is an example of that method being used to write a sample number on the GUI:<code>+  - **Add a Counter to Inventory** You should do this on your own. Maintain a state in the ''Inventory'' class that knows how many objects have been picked up. Display this number on the screen. To have a class write something onto the GUI, you override the ''void OnGUI()'' method of that class (inherited from ''MonoBehavior''. This method gets called whenever the GUI gets updated by Unity. Here is an example of that method being used to write a sample number on the GUI:<code cpp>
  void OnGUI() {  void OnGUI() {
  int number = 2;  int number = 2;
/var/www/cadia.ru.is/wiki/data/attic/public/t-vien-14-1/lab_2_materials.1390390813.txt.gz · Last modified: 2024/04/29 13:33 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki