Quantcast
Channel: Questions in topic: "gun"
Browsing latest articles
Browse All 592 View Live
↧

How to make delay for shooting in Unity/photon 2

Here is my code: using Photon.Pun; using System.Collections; using System.Collections.Generic; using UnityEngine; public class SingleShotGun : Gun { [SerializeField] Camera cam; PhotonView PV; public...

View Article


bullet doesn't go anywhere

I made the following script and attached it to my gun, which has a child that is located at the barrel named launch. using System.Collections; using System.Collections.Generic; using UnityEngine;...

View Article


How would I implement this reload system?

I'm making a game where reloading is a core game mechanic. I am nowhere near implementing it yet but I am fairly sure I can get the reload done with a timeline, which I start whenever I want to reload....

View Article

Problem with camera

I'm trying to make an fps shooter from scratch, but I'm having some problems with the gun graphics. To keep it on the camera at all times, I attached it to the camera, but it seems that the gun mesh...

View Article

gun shooting script, gun activation script if you help me solve it when i...

[alt text][1]I had a problem with this script of my game to shoot the pistols and I got this error error CS1525: Invalid expression term can you help me and I tried to solve it but I could not this is...

View Article


How do I create bullet hole for my gun?

I want to create a gun I followed a tutorial but my Bullet holes are not in the correct position GameObject bulletHole = Instantiate(bulletHole, hit.point + (hit.normal * .1f),...

View Article

animating multiple weapons with 2 arms

I am making an fps shooter but I have ran into a problem with the animation. The problem is the animations with multiple different weapons and 1 set of arms. I have looked on YouTube and they all only...

View Article

How do I make it so that my bullet projectile for my gun does damage?

Hi, I am new to both Unity and C#. I used a 2 part tutorial to make a gun script, if needed the channel name is "Dave // Game Development." The tutorial's first episode has a projectile bullet-type...

View Article


WaitForSecond Corountine Sleep Time Varies

Code: public float shooting_wait_time = 0.2f; public int bullets; private bool waiting = false; void Update() { if (Input.GetButtonDown("Fire1") && bullets != 0) { if (!waiting) { // Do...

View Article


Clamping turret rotation on Y axis not working

Hello everyone ! Here is my issue, I have a gun, I am trying (I technically succeeded) to clamp its rotation on the Y axis between -35 and 35 degrees, and I mean it works, but for some reason this -35...

View Article

I Want To Shoot Bullets Correctly.

Hello Everyone! so not very long ago i asked a question and based on what's seen or what seems obvious it was not asked correctly so let me explain again, so basically i want to shoot bullets with a...

View Article

Why is my gun stretching out when I pick it up?

When my gun is picked up, the transform changes from 0.02 on all axes to 1 on all axes. If it helps, here is my pick up system script: using System.Collections; using System.Collections.Generic; using...

View Article

2D gun aiming problem

Hi, I'm working on a 2d game where the player holds a weapon and aim /flip with the cursor. When the player is flipped, the rotation / aiming with the mouse isn't fluid anymore, the player is not able...

View Article


Changing character X axis rotation so that gun points at target issue

Good evening everyone! I am making a WWII shooter and currently working on the AI I am simply trying to have the back of my character move up or down in order for my gun object to point at the target...

View Article

How to disable the previous child object of a parent,How to disable previous...

Essentially im using a gameobject to store guns that the player has access to and there is a script that allows the player to pickup a weapon. however when the player picks up the weapon it doesnt...

View Article


How to bring reticles in different situations to the center of the camera?

I'm making a part to look into the optical sight and scope when aiming in an FPS game now. The gun is a child object of the right hand when it is not aimed, but when it is aimed, it has a parent-child...

View Article

How to lerp rotate the gun to the opposite of ur mouses X position and clamp it

i wanna lerp the position of the gun to the position of the gun + the mouse x position but i dont want the gun to rotate more than -30 and 30 on the y axis... pls help i have no idea how to even start...

View Article


How can the ammo go to 31 at the start of a game?,How can I make The current...

How can I make it that the ammo goes toe 31 at the start of the game? using UnityEngine; public class Gun : MonoBehaviour { [Header("References")] [SerializeField] private GunData gunData;...

View Article

Granade script

Hi people. I need a good granade script for my game. the actual script what i'm using is this: public class BulletSc : MonoBehaviour{ [SerializeField] public Rigidbody rb; [SerializeField] public...

View Article

Bullet not affecting health

using System.Collections; using System.Collections.Generic; using UnityEngine; public class Gun : MonoBehaviour { public Transform firepoint; public GameObject bulletPrefab; void Start() { } // Update...

View Article

How do I make it so I only damage the enemy once?

I recently made a pretty simple FPS game, where you shoot bullets (which are gameObjects) at enemies. I made it so that each Bullet does 5 damage, and that the Enemy has 50 health. So it should take 10...

View Article


How do I fire multiple bullets in an arc?

I have a variable `projectileNum` and when it is set to one, it works perfectly, but when it is above that, nothing I do gets it to work. If I use a for or while loop, it fires multiple bullets, but...

View Article


How do I automatically target a random enemy within a certain range and...

In my game, you control a tank, and you have two guns, one which is aimed by you, the player, and one which automatically aims at an enemy within range. All of my enemies are tagged Enemy. I want the...

View Article

How do I make it so that my bullet doesn't just delete anything it touches...

public class Bullet : MonoBehaviour { public float life = 3; void Awake() { Destroy(gameObject, life); } void OnCollisionEnter(Collision collision) { Destroy(collision.gameObject); Destroy(gameObject);...

View Article

I want an enemy to take damage from a projectile (A Certain Layer Named Bullet)

So I added damage and health to the enemy but i dont know how to make him get damaged from a certain projectile here's the code public void TakeDamage(int damage) { health -= damage; if (health <=...

View Article


another problem with bullets

I have problem with my bullets It don't collision or something like that and It's writing this **ERROR** **Tag: Bullet is not defined. UnityEngine.StackTraceUtility:ExtractStackTrace ()...

View Article

Changed the hitbox for my aim, but the game is still centered the gun at the...

My code is made to make the gun circle 0, 0, 0, but I made the hitbox go up by +1 so it is now 0, 1, 0, but the gun is still circling the 0, 0, 0 position, how to do I change the code is it looks in...

View Article

Assets\Charactershoot.cs(6,12): error CS0246: The type or namespace name...

using System.Collections; using System.Collections.Generic; using UnityEngine; public class charactershoot : MonoBehaviour { public Gun gun; public int shootButton; public KeyCode reloadKey; void...

View Article

Gun will not shoot, shows error.

i made a gun script. that shows error: NullReferenceException: Object reference not set to an instance of an object gun.Shoot () (at Assets/code/gun.cs:132)<---- see script 1 (see void Shoot for...

View Article



How to recoil the Camera Up??,How to recoil the Camera Up

The recoil back and forward was made using coroutine and Lerp like this, ``` Vector3 recoilBack = new Vector3(currentGun.retroActionForce, originPos.y, originPos.z); Vector3 retroActionRecoilBack = new...

View Article
Browsing latest articles
Browse All 592 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>