• 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 /
  • Help Room /
avatar image
0
Question by tiyyargee · Mar 18, 2016 at 12:46 PM · c#script.equip

can anyone help me with equip/unequip a wepon?

hi guys please help me , i have a player when i press E key he equip the the weapon ,but i want when i press E key again yo unequip the weapon , and the weapon return to its original position on player "left upleg"

this is my script; using UnityEngine; using System.Collections;

public class WieldWeapon : MonoBehaviour {

 Animator anim;
 public GameObject sword;

public GameObject hand; void Start() {

     anim = GetComponent<Animator>();

 }

 void Update()

{

     if (Input.GetKeyDown(KeyCode.E))
     {
         anim.SetTrigger("Draw");
         sword.transform.parent = hand.transform; //Parenting this item to the hand bone position
         sword.transform.localPosition = new Vector3(0.1170032f, -0.1580014f, 0.07697155f); // centering the sword handle
         sword.transform.localRotation = Quaternion.identity; //must point y local, so reset rotation
         sword.transform.localRotation = Quaternion.Euler(38.68549f, 13.8611f, 104.8913f); //and rotate the sword accordingly
     }

     

}

}

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

Answer by Ali-hatem · Mar 19, 2016 at 04:07 PM

let us deal with press E key now use a bool variable :

 bool equiped = false;
 if (Input.GetKeyDown(KeyCode.E) && !equiped )
 {
  //draw the sword
   equiped = true;
 }
  else if  (Input.GetKeyDown(KeyCode.E) && equiped )
 {
 //hide the sword
 equiped = false;
 }
Comment
Add comment · Show 2 · 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 tiyyargee · Mar 20, 2016 at 08:43 PM 0
Share

thanks a lot man , sometimes my had freezes , really thanks

avatar image Ali-hatem tiyyargee · Mar 21, 2016 at 08:22 AM 0
Share

now close the question .

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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

"The associated script cannot be loaded" 0 Answers

How can i move object between two positions ? 1 Answer

Use c# "ref" with a GameObject or Component 1 Answer

I want my script to wait 2 seconds before continue in a condition, in update, using C# 2 Answers

How can i wait StartCoroutine to be finished in one script before starting a second script ? 1 Answer

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges