trying to make an enemy shoot a projectile at the player when the player enters the enemys range












1















for some reason the projectile is fired but only when the enemy comes into contact with the player and very slowly for some reason.
below is my code.



(there is a separate script on my projectile but that only deals with damage on the player)



public class flyingEnemy : MonoBehaviour {


public int maxHealth = 40;
Rigidbody2D rb2d;

public float speed;



public float attackRange;
private float lastAttackTime;
public float attackDelay;

public Transform target;
public float chaseRange;

public GameObject projectile;
public float bulletForce;
// Use this for initialization
void Start () {

}

// Update is called once per frame
void Update () {
float distanceToTarget = Vector3.Distance(transform.position, target.position);
if(distanceToTarget < chaseRange)
{
//start chasing player
Vector3 targetDir = target.position - transform.position;
float angle = Mathf.Atan2(targetDir.y, targetDir.x) * Mathf.Rad2Deg - 90f;
Quaternion q = Quaternion.AngleAxis(angle, Vector3.forward);
transform.rotation = Quaternion.RotateTowards(transform.rotation, q, 180);

transform.Translate(Vector3.up * Time.deltaTime * speed);

}
if(distanceToTarget < attackRange)
{

//check to see if its time to attack again
if (Time.time > lastAttackTime + attackDelay)
{
//do we have lineofsight?
RaycastHit2D Hit = Physics2D.Raycast(transform.position, transform.up,attackRange);
//what did the raycast hit?
if (Hit.transform == target)
{
GameObject newBullet = Instantiate(projectile, transform.position, transform.rotation);
newBullet.GetComponent<Rigidbody2D>().AddRelativeForce(new Vector2(0f, bulletForce));
lastAttackTime = Time.time;
}
}
}


}









share|improve this question

























  • well the projectiles only seem to fire when the player comes into contact with the enemy and i want them to fire any distance, but also they are very slow.

    – sam austin
    Dec 30 '18 at 22:49
















1















for some reason the projectile is fired but only when the enemy comes into contact with the player and very slowly for some reason.
below is my code.



(there is a separate script on my projectile but that only deals with damage on the player)



public class flyingEnemy : MonoBehaviour {


public int maxHealth = 40;
Rigidbody2D rb2d;

public float speed;



public float attackRange;
private float lastAttackTime;
public float attackDelay;

public Transform target;
public float chaseRange;

public GameObject projectile;
public float bulletForce;
// Use this for initialization
void Start () {

}

// Update is called once per frame
void Update () {
float distanceToTarget = Vector3.Distance(transform.position, target.position);
if(distanceToTarget < chaseRange)
{
//start chasing player
Vector3 targetDir = target.position - transform.position;
float angle = Mathf.Atan2(targetDir.y, targetDir.x) * Mathf.Rad2Deg - 90f;
Quaternion q = Quaternion.AngleAxis(angle, Vector3.forward);
transform.rotation = Quaternion.RotateTowards(transform.rotation, q, 180);

transform.Translate(Vector3.up * Time.deltaTime * speed);

}
if(distanceToTarget < attackRange)
{

//check to see if its time to attack again
if (Time.time > lastAttackTime + attackDelay)
{
//do we have lineofsight?
RaycastHit2D Hit = Physics2D.Raycast(transform.position, transform.up,attackRange);
//what did the raycast hit?
if (Hit.transform == target)
{
GameObject newBullet = Instantiate(projectile, transform.position, transform.rotation);
newBullet.GetComponent<Rigidbody2D>().AddRelativeForce(new Vector2(0f, bulletForce));
lastAttackTime = Time.time;
}
}
}


}









share|improve this question

























  • well the projectiles only seem to fire when the player comes into contact with the enemy and i want them to fire any distance, but also they are very slow.

    – sam austin
    Dec 30 '18 at 22:49














1












1








1








for some reason the projectile is fired but only when the enemy comes into contact with the player and very slowly for some reason.
below is my code.



(there is a separate script on my projectile but that only deals with damage on the player)



public class flyingEnemy : MonoBehaviour {


public int maxHealth = 40;
Rigidbody2D rb2d;

public float speed;



public float attackRange;
private float lastAttackTime;
public float attackDelay;

public Transform target;
public float chaseRange;

public GameObject projectile;
public float bulletForce;
// Use this for initialization
void Start () {

}

// Update is called once per frame
void Update () {
float distanceToTarget = Vector3.Distance(transform.position, target.position);
if(distanceToTarget < chaseRange)
{
//start chasing player
Vector3 targetDir = target.position - transform.position;
float angle = Mathf.Atan2(targetDir.y, targetDir.x) * Mathf.Rad2Deg - 90f;
Quaternion q = Quaternion.AngleAxis(angle, Vector3.forward);
transform.rotation = Quaternion.RotateTowards(transform.rotation, q, 180);

transform.Translate(Vector3.up * Time.deltaTime * speed);

}
if(distanceToTarget < attackRange)
{

//check to see if its time to attack again
if (Time.time > lastAttackTime + attackDelay)
{
//do we have lineofsight?
RaycastHit2D Hit = Physics2D.Raycast(transform.position, transform.up,attackRange);
//what did the raycast hit?
if (Hit.transform == target)
{
GameObject newBullet = Instantiate(projectile, transform.position, transform.rotation);
newBullet.GetComponent<Rigidbody2D>().AddRelativeForce(new Vector2(0f, bulletForce));
lastAttackTime = Time.time;
}
}
}


}









share|improve this question
















for some reason the projectile is fired but only when the enemy comes into contact with the player and very slowly for some reason.
below is my code.



(there is a separate script on my projectile but that only deals with damage on the player)



public class flyingEnemy : MonoBehaviour {


public int maxHealth = 40;
Rigidbody2D rb2d;

public float speed;



public float attackRange;
private float lastAttackTime;
public float attackDelay;

public Transform target;
public float chaseRange;

public GameObject projectile;
public float bulletForce;
// Use this for initialization
void Start () {

}

// Update is called once per frame
void Update () {
float distanceToTarget = Vector3.Distance(transform.position, target.position);
if(distanceToTarget < chaseRange)
{
//start chasing player
Vector3 targetDir = target.position - transform.position;
float angle = Mathf.Atan2(targetDir.y, targetDir.x) * Mathf.Rad2Deg - 90f;
Quaternion q = Quaternion.AngleAxis(angle, Vector3.forward);
transform.rotation = Quaternion.RotateTowards(transform.rotation, q, 180);

transform.Translate(Vector3.up * Time.deltaTime * speed);

}
if(distanceToTarget < attackRange)
{

//check to see if its time to attack again
if (Time.time > lastAttackTime + attackDelay)
{
//do we have lineofsight?
RaycastHit2D Hit = Physics2D.Raycast(transform.position, transform.up,attackRange);
//what did the raycast hit?
if (Hit.transform == target)
{
GameObject newBullet = Instantiate(projectile, transform.position, transform.rotation);
newBullet.GetComponent<Rigidbody2D>().AddRelativeForce(new Vector2(0f, bulletForce));
lastAttackTime = Time.time;
}
}
}


}






c# unity3d






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 30 '18 at 22:35







sam austin

















asked Dec 30 '18 at 22:27









sam austinsam austin

134




134













  • well the projectiles only seem to fire when the player comes into contact with the enemy and i want them to fire any distance, but also they are very slow.

    – sam austin
    Dec 30 '18 at 22:49



















  • well the projectiles only seem to fire when the player comes into contact with the enemy and i want them to fire any distance, but also they are very slow.

    – sam austin
    Dec 30 '18 at 22:49

















well the projectiles only seem to fire when the player comes into contact with the enemy and i want them to fire any distance, but also they are very slow.

– sam austin
Dec 30 '18 at 22:49





well the projectiles only seem to fire when the player comes into contact with the enemy and i want them to fire any distance, but also they are very slow.

– sam austin
Dec 30 '18 at 22:49












1 Answer
1






active

oldest

votes


















0














I modified your code and it seems to work now. I added a 'Player' layer to the player gameobject, then rewrote your script to the following:



using UnityEngine;

public class Enemy : MonoBehaviour
{

public int maxHealth = 40;

public float speed;
public float attackRange;
public float attackDelay;
public float chaseRange;
public float bulletForce;
private float lastAttackTime;
private float distanceToTarget;

public Transform target;
public GameObject projectile;
private Rigidbody2D rb2d;

private void Start()
{
rb2d = GetComponent<Rigidbody2D>();
}

private void FixedUpdate()
{
if (distanceToTarget < chaseRange)
{
Chase(target.position);
}
else
{
rb2d.velocity = Vector2.zero;
}
}

private void Update()
{
distanceToTarget = Vector3.Distance(transform.position, target.position);

if (distanceToTarget < attackRange)
{
if (Time.time > lastAttackTime + attackDelay)
{
RaycastHit2D Hit = Physics2D.Raycast(transform.position, transform.up, attackRange, 1 << LayerMask.NameToLayer("Player"));
if (Hit)
{
Fire();
lastAttackTime = Time.time;
}
}
}
}

private void Chase(Vector3 target)
{
Vector3 targetDir = target - transform.position;
float angle = Mathf.Atan2(targetDir.y, targetDir.x) * Mathf.Rad2Deg - 90f;
Quaternion q = Quaternion.AngleAxis(angle, Vector3.forward);
transform.rotation = Quaternion.RotateTowards(transform.rotation, q, 180);
rb2d.velocity = targetDir.normalized * speed;
}

private void Fire()
{
GameObject newBullet = Instantiate(projectile, transform.position, transform.rotation);
newBullet.GetComponent<Rigidbody2D>().AddForce(transform.up * bulletForce, ForceMode2D.Impulse);
}
}


First, if you have a rigidbody, use that instead of Transform.Translate. Second, make sure your raycast only applies to the Player layer.
Third, rather than



AddRelativeForce(new Vector2(0f, bulletForce));


use



AddForce(transform.up * bulletForce, ForceMode2D.Impulse);


Fourth, play around with the serialized values until you get the result you want. What I did was lower the enemy's speed and increase the bullet force. Let me know if you have any questions.






share|improve this answer


























  • thank you so much for your help, im confused at how else i can use the rigidbody instead of the transform.translate function?

    – sam austin
    Dec 31 '18 at 14:35











  • I wrote it in the code for you. It's inside the 'Chase' function: rb2d.velocity = targetDir.normalized * speed;

    – Sean Carey
    Dec 31 '18 at 19:35











  • youve been a great help its now working as intended thank you so much :)

    – sam austin
    Jan 1 at 15:26











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53981933%2ftrying-to-make-an-enemy-shoot-a-projectile-at-the-player-when-the-player-enters%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














I modified your code and it seems to work now. I added a 'Player' layer to the player gameobject, then rewrote your script to the following:



using UnityEngine;

public class Enemy : MonoBehaviour
{

public int maxHealth = 40;

public float speed;
public float attackRange;
public float attackDelay;
public float chaseRange;
public float bulletForce;
private float lastAttackTime;
private float distanceToTarget;

public Transform target;
public GameObject projectile;
private Rigidbody2D rb2d;

private void Start()
{
rb2d = GetComponent<Rigidbody2D>();
}

private void FixedUpdate()
{
if (distanceToTarget < chaseRange)
{
Chase(target.position);
}
else
{
rb2d.velocity = Vector2.zero;
}
}

private void Update()
{
distanceToTarget = Vector3.Distance(transform.position, target.position);

if (distanceToTarget < attackRange)
{
if (Time.time > lastAttackTime + attackDelay)
{
RaycastHit2D Hit = Physics2D.Raycast(transform.position, transform.up, attackRange, 1 << LayerMask.NameToLayer("Player"));
if (Hit)
{
Fire();
lastAttackTime = Time.time;
}
}
}
}

private void Chase(Vector3 target)
{
Vector3 targetDir = target - transform.position;
float angle = Mathf.Atan2(targetDir.y, targetDir.x) * Mathf.Rad2Deg - 90f;
Quaternion q = Quaternion.AngleAxis(angle, Vector3.forward);
transform.rotation = Quaternion.RotateTowards(transform.rotation, q, 180);
rb2d.velocity = targetDir.normalized * speed;
}

private void Fire()
{
GameObject newBullet = Instantiate(projectile, transform.position, transform.rotation);
newBullet.GetComponent<Rigidbody2D>().AddForce(transform.up * bulletForce, ForceMode2D.Impulse);
}
}


First, if you have a rigidbody, use that instead of Transform.Translate. Second, make sure your raycast only applies to the Player layer.
Third, rather than



AddRelativeForce(new Vector2(0f, bulletForce));


use



AddForce(transform.up * bulletForce, ForceMode2D.Impulse);


Fourth, play around with the serialized values until you get the result you want. What I did was lower the enemy's speed and increase the bullet force. Let me know if you have any questions.






share|improve this answer


























  • thank you so much for your help, im confused at how else i can use the rigidbody instead of the transform.translate function?

    – sam austin
    Dec 31 '18 at 14:35











  • I wrote it in the code for you. It's inside the 'Chase' function: rb2d.velocity = targetDir.normalized * speed;

    – Sean Carey
    Dec 31 '18 at 19:35











  • youve been a great help its now working as intended thank you so much :)

    – sam austin
    Jan 1 at 15:26
















0














I modified your code and it seems to work now. I added a 'Player' layer to the player gameobject, then rewrote your script to the following:



using UnityEngine;

public class Enemy : MonoBehaviour
{

public int maxHealth = 40;

public float speed;
public float attackRange;
public float attackDelay;
public float chaseRange;
public float bulletForce;
private float lastAttackTime;
private float distanceToTarget;

public Transform target;
public GameObject projectile;
private Rigidbody2D rb2d;

private void Start()
{
rb2d = GetComponent<Rigidbody2D>();
}

private void FixedUpdate()
{
if (distanceToTarget < chaseRange)
{
Chase(target.position);
}
else
{
rb2d.velocity = Vector2.zero;
}
}

private void Update()
{
distanceToTarget = Vector3.Distance(transform.position, target.position);

if (distanceToTarget < attackRange)
{
if (Time.time > lastAttackTime + attackDelay)
{
RaycastHit2D Hit = Physics2D.Raycast(transform.position, transform.up, attackRange, 1 << LayerMask.NameToLayer("Player"));
if (Hit)
{
Fire();
lastAttackTime = Time.time;
}
}
}
}

private void Chase(Vector3 target)
{
Vector3 targetDir = target - transform.position;
float angle = Mathf.Atan2(targetDir.y, targetDir.x) * Mathf.Rad2Deg - 90f;
Quaternion q = Quaternion.AngleAxis(angle, Vector3.forward);
transform.rotation = Quaternion.RotateTowards(transform.rotation, q, 180);
rb2d.velocity = targetDir.normalized * speed;
}

private void Fire()
{
GameObject newBullet = Instantiate(projectile, transform.position, transform.rotation);
newBullet.GetComponent<Rigidbody2D>().AddForce(transform.up * bulletForce, ForceMode2D.Impulse);
}
}


First, if you have a rigidbody, use that instead of Transform.Translate. Second, make sure your raycast only applies to the Player layer.
Third, rather than



AddRelativeForce(new Vector2(0f, bulletForce));


use



AddForce(transform.up * bulletForce, ForceMode2D.Impulse);


Fourth, play around with the serialized values until you get the result you want. What I did was lower the enemy's speed and increase the bullet force. Let me know if you have any questions.






share|improve this answer


























  • thank you so much for your help, im confused at how else i can use the rigidbody instead of the transform.translate function?

    – sam austin
    Dec 31 '18 at 14:35











  • I wrote it in the code for you. It's inside the 'Chase' function: rb2d.velocity = targetDir.normalized * speed;

    – Sean Carey
    Dec 31 '18 at 19:35











  • youve been a great help its now working as intended thank you so much :)

    – sam austin
    Jan 1 at 15:26














0












0








0







I modified your code and it seems to work now. I added a 'Player' layer to the player gameobject, then rewrote your script to the following:



using UnityEngine;

public class Enemy : MonoBehaviour
{

public int maxHealth = 40;

public float speed;
public float attackRange;
public float attackDelay;
public float chaseRange;
public float bulletForce;
private float lastAttackTime;
private float distanceToTarget;

public Transform target;
public GameObject projectile;
private Rigidbody2D rb2d;

private void Start()
{
rb2d = GetComponent<Rigidbody2D>();
}

private void FixedUpdate()
{
if (distanceToTarget < chaseRange)
{
Chase(target.position);
}
else
{
rb2d.velocity = Vector2.zero;
}
}

private void Update()
{
distanceToTarget = Vector3.Distance(transform.position, target.position);

if (distanceToTarget < attackRange)
{
if (Time.time > lastAttackTime + attackDelay)
{
RaycastHit2D Hit = Physics2D.Raycast(transform.position, transform.up, attackRange, 1 << LayerMask.NameToLayer("Player"));
if (Hit)
{
Fire();
lastAttackTime = Time.time;
}
}
}
}

private void Chase(Vector3 target)
{
Vector3 targetDir = target - transform.position;
float angle = Mathf.Atan2(targetDir.y, targetDir.x) * Mathf.Rad2Deg - 90f;
Quaternion q = Quaternion.AngleAxis(angle, Vector3.forward);
transform.rotation = Quaternion.RotateTowards(transform.rotation, q, 180);
rb2d.velocity = targetDir.normalized * speed;
}

private void Fire()
{
GameObject newBullet = Instantiate(projectile, transform.position, transform.rotation);
newBullet.GetComponent<Rigidbody2D>().AddForce(transform.up * bulletForce, ForceMode2D.Impulse);
}
}


First, if you have a rigidbody, use that instead of Transform.Translate. Second, make sure your raycast only applies to the Player layer.
Third, rather than



AddRelativeForce(new Vector2(0f, bulletForce));


use



AddForce(transform.up * bulletForce, ForceMode2D.Impulse);


Fourth, play around with the serialized values until you get the result you want. What I did was lower the enemy's speed and increase the bullet force. Let me know if you have any questions.






share|improve this answer















I modified your code and it seems to work now. I added a 'Player' layer to the player gameobject, then rewrote your script to the following:



using UnityEngine;

public class Enemy : MonoBehaviour
{

public int maxHealth = 40;

public float speed;
public float attackRange;
public float attackDelay;
public float chaseRange;
public float bulletForce;
private float lastAttackTime;
private float distanceToTarget;

public Transform target;
public GameObject projectile;
private Rigidbody2D rb2d;

private void Start()
{
rb2d = GetComponent<Rigidbody2D>();
}

private void FixedUpdate()
{
if (distanceToTarget < chaseRange)
{
Chase(target.position);
}
else
{
rb2d.velocity = Vector2.zero;
}
}

private void Update()
{
distanceToTarget = Vector3.Distance(transform.position, target.position);

if (distanceToTarget < attackRange)
{
if (Time.time > lastAttackTime + attackDelay)
{
RaycastHit2D Hit = Physics2D.Raycast(transform.position, transform.up, attackRange, 1 << LayerMask.NameToLayer("Player"));
if (Hit)
{
Fire();
lastAttackTime = Time.time;
}
}
}
}

private void Chase(Vector3 target)
{
Vector3 targetDir = target - transform.position;
float angle = Mathf.Atan2(targetDir.y, targetDir.x) * Mathf.Rad2Deg - 90f;
Quaternion q = Quaternion.AngleAxis(angle, Vector3.forward);
transform.rotation = Quaternion.RotateTowards(transform.rotation, q, 180);
rb2d.velocity = targetDir.normalized * speed;
}

private void Fire()
{
GameObject newBullet = Instantiate(projectile, transform.position, transform.rotation);
newBullet.GetComponent<Rigidbody2D>().AddForce(transform.up * bulletForce, ForceMode2D.Impulse);
}
}


First, if you have a rigidbody, use that instead of Transform.Translate. Second, make sure your raycast only applies to the Player layer.
Third, rather than



AddRelativeForce(new Vector2(0f, bulletForce));


use



AddForce(transform.up * bulletForce, ForceMode2D.Impulse);


Fourth, play around with the serialized values until you get the result you want. What I did was lower the enemy's speed and increase the bullet force. Let me know if you have any questions.







share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 1 at 23:50

























answered Dec 31 '18 at 0:06









Sean CareySean Carey

57038




57038













  • thank you so much for your help, im confused at how else i can use the rigidbody instead of the transform.translate function?

    – sam austin
    Dec 31 '18 at 14:35











  • I wrote it in the code for you. It's inside the 'Chase' function: rb2d.velocity = targetDir.normalized * speed;

    – Sean Carey
    Dec 31 '18 at 19:35











  • youve been a great help its now working as intended thank you so much :)

    – sam austin
    Jan 1 at 15:26



















  • thank you so much for your help, im confused at how else i can use the rigidbody instead of the transform.translate function?

    – sam austin
    Dec 31 '18 at 14:35











  • I wrote it in the code for you. It's inside the 'Chase' function: rb2d.velocity = targetDir.normalized * speed;

    – Sean Carey
    Dec 31 '18 at 19:35











  • youve been a great help its now working as intended thank you so much :)

    – sam austin
    Jan 1 at 15:26

















thank you so much for your help, im confused at how else i can use the rigidbody instead of the transform.translate function?

– sam austin
Dec 31 '18 at 14:35





thank you so much for your help, im confused at how else i can use the rigidbody instead of the transform.translate function?

– sam austin
Dec 31 '18 at 14:35













I wrote it in the code for you. It's inside the 'Chase' function: rb2d.velocity = targetDir.normalized * speed;

– Sean Carey
Dec 31 '18 at 19:35





I wrote it in the code for you. It's inside the 'Chase' function: rb2d.velocity = targetDir.normalized * speed;

– Sean Carey
Dec 31 '18 at 19:35













youve been a great help its now working as intended thank you so much :)

– sam austin
Jan 1 at 15:26





youve been a great help its now working as intended thank you so much :)

– sam austin
Jan 1 at 15:26




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53981933%2ftrying-to-make-an-enemy-shoot-a-projectile-at-the-player-when-the-player-enters%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith