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 Serpentice · Sep 29, 2012 at 07:20 PM · switchpickupweapons

I'm trying to make a weapon pickup script but can't quite get it to work.

I have gotten it so I can switch between the two weapons that are in my weapon slots but I can't get it to pick up a weapon from the ground. I have two scripts. One is the WeaponIndex script which I attachted to an empty object on my player that contains all my weapons with the scripts attatched to them that make them work. The second script is my DummyWeapon script that I attatch to a fake weapon that just has the appearance of the real weapon. I am trying to make it so that I press the E key once I am a certain distance from the fake weapon which will then activate the real weapon on the slot i currently had selected to replace the current weapon. Im not sure what I need to do to make this work. When I run the script and try to pick up a weapon I don't get any errors but nothing happens. My only guess is that the last function in my WeaponIndex script(pickupWeapon) needs to be changed but I'm not sure how to change it.

WeaponIndex Script

 var slotOne : GameObject;
 var slotTwo : GameObject;
 var pickupDistance = 5;
 var dummyWeaponTransform : Transform;
 var myPlayer : Transform;
 var newWeapon : GameObject;
 
 function Start () {
 
 
 activeSlot(slotOne);
 nonActiveSlot(slotTwo);
 
 }
 
 function Update () {
 
 
 if(Input.GetKeyDown(KeyCode.E) && Vector3.Distance(myPlayer.position, dummyWeaponTransform.position) < pickupDistance) {
 
 pickUpWeapon();
 
 }
 if(Input.GetKeyDown("1")){
 
 activeSlot(slotOne);
 nonActiveSlot(slotTwo);
 print("slotOne");
 }
 
 if(Input.GetKeyDown("2")){
 
 activeSlot(slotTwo);
 nonActiveSlot(slotOne);
 print("slotTwo");
 
 }
 }
 
 function activeSlot(GameObject){
 
     GameObject.SetActiveRecursively(true);
     
 }
 
 function nonActiveSlot(GameObject){
 
     GameObject.SetActiveRecursively(false);
 
 }
 
 function pickUpWeapon(){
     newWeapon.GetComponent(DummyWeapon).weapon = activeSlot.GameObject;
 }
 

dummyWeapon Script

 var weapon : GameObject;
 
 
 function Start () {
 
 
 }
 
 function Update () {
 
 
 }
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

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

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

Arena shooter style weapon inventory 1 Answer

What's wrong with my weapon switching/swapping script? 0 Answers

Swapping Weapons In Game 0 Answers

Weapon Pickup and Drop 0 Answers

switch weapons script not working? 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