Posts by Marcelo Ancelmo • 21 points
1 post
-
2
votes1
answer105
viewsQ: How to make the gun disappear in the same key that makes it appear in UNITY
using UnityEngine; using System.Collections; public class SelecteArma : MonoBehaviour { public bool Equipamento = true; void Start () { } void Update () { if (Input.GetKeyDown ("1")) {…