trying to make an enemy shoot a projectile at the player when the player enters the enemys range
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
add a comment |
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
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
add a comment |
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
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
c# unity3d
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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.
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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