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 raycosantana · Feb 03, 2013 at 02:21 PM · buttondestroyinstancing

instantiate and destroy object with the same button

Hello

I need to destroy and instanciate the same object with the same button, right now Im clueless on how to do this. I have two weapons in my game, one its a pistol and the other a shotgun, I want the pistol to disappear when I hold the right mouse button and reappear when I release the right mouse button.

Basically I want to use the right mouse button to change weapons, while the right mouse button its hold the pistol disappears and the shotgun appears, when you release the right mouse button the opposite happends.

How can I do this?

And the bonus question (this one gives you extra points! hahaha): The objects I destroy and instanciate need to be prefabs? Im asking because Im guessing if I destroy an object it would vanish for good from the scene, right?

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 raycosantana · Feb 03, 2013 at 07:07 PM 0
Share

Any help is welcome

avatar image T27M · Feb 03, 2013 at 07:16 PM 0
Share

Destroying the object and instantiating the weapon would be a really inefficient way of doing this. You just need to disable the object, any scripts attached and move it out of view when not in use.

You could possible have a weapons class that can set the shotgun object as the active object when the right mouse is down and the pistol as the active object when not, so the same component controls the weapon change and all its doing is disabling one and switching to the other.

Hope that makes sense.

1 Reply

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

Answer by robertbu · Feb 03, 2013 at 07:40 PM

As mentioned above by @raycosantana, you don't need to destroy and Instantiate each time. You can enable/disable or show/hide.

To show/hide: renderer.enabled = true/false To enable/disable: gameObject.SetActive(true/false)

As for making the guns visible/invisible, you can do something like:

 if (Input.GetMouseButtonDown(1))
 {
  // Hide the pistol, show the shotgun
 } 
 else if (Input.GetMouseButtonUp(1))
 {
 // Show the pistol, hide the shotgun
 }

Note the GetMouseButtonDown/Up methods return true only during the frame the mouse buttons change state.

Comment
Add comment · Show 1 · 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
avatar image raycosantana · Feb 04, 2013 at 04:13 PM 0
Share

Works like a charm, thanks.

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

10 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

Related Questions

Buttons still visible after Destroy() but say "deleted gameobject" in hierarchy 1 Answer

GUI destroy instantiated Objects 2 Answers

GameObject.Destroy(gameObject) does not destroy capsules 2 Answers

Destroy object on collision with button 1 Answer

Destroying a Button when you click it. 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