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 Bioinformatizer · Nov 26, 2014 at 07:22 PM · instantiateprefab

Reference a prefab to be instantiated in another scope

My code has the desired effect : Hold the mouse button down to create a prefab ( in this case a line renderer) until the mouse is released. Issues with this code I understand so far : The destroy(laser, 0.2F) doesn't look right The game object needs to be placed into a var or game object because the trying to destroy the prefab itself is the wrong way to do it. Calling if mouseButtonUp(0) within the function of if mousebuttondown(0) does not occur. Using while mousebuttondown(0) to instantiate the prefab breaks unity.


This was solved by making the beam object a private game object and using beam = (GameObject)Instantiate(laser, transform.position, transform.rotation) later Where and why (GameObject)Instantiate is different, I didn't understand.


 using UnityEngine;
 using System.Collections;
 
 public class PlayerController : MonoBehaviour {
     
     public GameObject laser;
 
     void makeBeam() {
         GameObject beam = Instantiate(laser, transform.position, transform.rotation);
     }
     void killBeam() {
         Destroy(beam);
     }
     // Update is called once per frame
     void Update () {
         if (Input.GetMouseButtonDown(0)) {
             makeBeam ();
             //var beam = Instantiate(laser, transform.position, transform.rotation);        
             //if (! Input.GetMouseButtonDown (0))
             //}
         }
         else {
         //if (Input.GetMouseButtonUp (0)) {
             killBeam ();
         }
     }
 }

Comment
Add comment · Show 2
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 b1gry4n · Nov 26, 2014 at 09:17 PM 1
Share

calling "else" under update is going to call "killBeam" every frame the "mousebuttondown" is not called.

Calling if mouseButtonUp(0) within the function of if mousebuttondown(0) does not occur.

This is because mousebuttondown is called for the 1 frame the mouse button was pressed down. Having mouse button up within mousebutton down doesnt make sense unless you are insanely fast and are able to lift your finger off the mousebutton within that 1 frame time period.

You should create a reference to the gameobject like you mention and I am not even really sure what your question is.

     public GameObject laser;
     private bool laserSpawned = false;
     private GameObject laserObj;
 
     void Update(){
         if(laserSpawned){
             if(Input.Get$$anonymous$$ouseButtonUp(0)){
                 $$anonymous$$illBeam();
             }
         }else{
             if(Input.Get$$anonymous$$ouseButtonDown(0)){
                 $$anonymous$$akeBeam();
             }
         }
     }
 
     void $$anonymous$$akeBeam(){
         laserSpawned = true;
         laserObj = (GameObject)Instantiate(laser, transform.position, transform.rotation);
     }
 
     void $$anonymous$$illBeam(){
         laserSpawned = false;
         Destroy (laserObj);
     }
avatar image Bioinformatizer · Nov 26, 2014 at 09:41 PM 0
Share

That worked great!!! The issue I was having was not understanding that you create the GameObject with the "private GameObject = objName" and then use the "objName = (GameObject)Instantiate(theThing)" later. It was hard to find a reference of this to get the object reference outside of the scope. This was really helpful, thank you.

0 Replies

· Add your reply
  • Sort: 

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Executing code on prefabs that are never instaciated + data loss 0 Answers

Prefab Instantiation 1 Answer

Instantiate New Gun 1 Answer

Instantiate: Create Connection 1 Answer

Instantiate a Prefab with click in a certain area 2 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