Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 TheRealKuha · May 11, 2016 at 08:13 PM · guiinstantiatetriggerguitextureinstantiate prefab

Show GUI Texture on Trigger and Instantiate Object if Button pressed while In Trigger?

Alright so I'm working on this canon thing where I walk into a trigger and a GUI Texture pops up that says "E" and when you press E, a canonball shooting forward gets spawned at a specified position, also a small particle effect of a explosion appears when the canonball appears. Here is the code I'm using and it doesn't work at all so can someone help refine the code so it works and perhaps explain to me the new code because I'm really new at this.

 public class CanonShoot : MonoBehaviour {
     public Transform ballPos;
     public Rigidbody Ball;
     float forceAmount = 5000;
     bool showGUI = false;
     public Texture EtoShoot;
     public GameObject effect;
 
     void OnTriggerEnter()
     {
         Rigidbody ballRigid;
         if ((Ball != null) && (ballPos != null) && Input.GetButtonDown("E"))
         {
             ballRigid = Instantiate(Ball, ballPos.position, ballPos.rotation) as Rigidbody;
             Instantiate(effect, ballPos.position, ballPos.rotation);
             if (ballRigid != null)
             {
                 ballRigid.AddForce(ballPos.forward * forceAmount);
             }
         }
     }
 
     void OnTriggerStay(Collider other)
     {
         if (other.gameObject.tag == "Player")
             showGUI = false;
     }
 
     void OnTriggerExit(Collider other)
     {
         if(other.gameObject.tag == "Player")
             showGUI = false;
     }
 
     void OnGUI()
     {
         if (showGUI == true)
             GUI.DrawTexture(new Rect(Screen.width / 4.5f, Screen.height / 4, 1024, 512),EtoShoot);
     }
 }

Thanks for the help and time!

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

1 Reply

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

Answer by TheRealKuha · May 12, 2016 at 08:22 AM

Nevermind, I got it working. Here are the 2 scripts I'm using one is for the GUI to pop up saying "E" and the other one is for actually pressing E and firing the canon. The fault was that I needed to use OnTriggerStay because that detects every frame for the if arguments if they are true. using UnityEngine; using System.Collections;

 public class CanonShoot : MonoBehaviour
 {
     public Transform ballPos;
     public Rigidbody Ball;
     float forceAmount = 1500;
     public GameObject effect;
 
     void OnTriggerStay(Collider other)
     {
         Rigidbody ballRigid;
         if ((other.gameObject.tag == "Player") && Input.GetButtonDown("Use"))
         {
             ballRigid = Instantiate(Ball, ballPos.position, ballPos.rotation) as Rigidbody;
             ballRigid.AddForce(ballPos.forward * forceAmount);
             Instantiate(effect, ballPos.position, ballPos.rotation);
         }
    }
 }

And the GUI:

 using UnityEngine;
 using System.Collections;
 
 public class ShowGUI : MonoBehaviour {
     private bool showGUI = false;
      public Texture pressE;
 
     void OnTriggerEnter(Collider other)
     {
         if(other.gameObject.tag == "Player")
         showGUI = true;
     }
     void OnTriggerExit(Collider other)
     {
         if (other.gameObject.tag == "Player")
             showGUI = false;
     }
 
 
     void OnGUI()
     {
         if (showGUI == true)
             GUI.DrawTexture(new Rect(Screen.width / 1.5f, Screen.height / 1.4f, 178, 178), pressE);
     }
 }
 

Comment
Add comment · 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

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

75 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

Related Questions

GUItexture displayed after al triggers activated 1 Answer

how to instantiate GUI Texture 1 Answer

Reduce Draw call for Multiple GUI Textures with same Texture 1 Answer

A big problem with my script.. 2 Answers

Creating GUITexture with a reference 1 Answer


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