Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • 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 /
avatar image
0
Question by CABRAS GAMES · Jan 16, 2012 at 07:44 PM · enemyspawnshoot

Problem with the enemy

Hi friends UNITY 3D. I have a problem with my enemy. My first script to shoot the enemy in the leg rather than shooting from his cannon placed on the arm. In the second script from the enemy shoots the gun because I entered an empty created by calling (Spawn) and I placed in front of the cannon. When I put the first script he shoots the enemy by the legs. When I put only the second script on the side of the gun then shoot it properly. Now I would ask if he could join the first script with the latter raising the part that shoots from the legs and the ax that shoots only the second script in the correct way then? Thanks in advance. :-)

First script

var lookAtTarget : Transform; var speed : int; var range : int; var damp : float; var ENEMY_HEALTH = 30; var nextFire = 1; private var fireRate = 0.0; var enemyBullet : Transform; var death : Transform ; var health : Transform;

function Awake() { if (!lookAtTarget) { lookAtTarget = GameObject.FindWithTag("Player").transform; } }

function Update() {

 if(ENEMY_HEALTH <= 0)
 {
     Instantiate(death, transform.position, transform.rotation);
     Instantiate(health, transform.position, transform.rotation);
     Debug.Log("DEAD");
     Destroy(gameObject);
  }

 if(lookAtTarget && CanAttackTarget())
 {
     //transform.LookAt(lookAtTarget);
     var rotate = Quaternion.LookRotation(lookAtTarget.transform.position - transform.position);
     transform.rotation = Quaternion.Slerp(transform.rotation, rotate, damp); 
     transform.Translate (0,0,speed*Time.deltaTime);

     if(Time.time >= nextFire)
     {
         nextFire = Time.time + nextFire;
         var bullet = Instantiate(enemyBullet, transform.position, transform.rotation);
         bullet.rigidbody.velocity = transform.forward * speed;
     }

 }

}

function CanAttackTarget() { //check if in range if(Vector3.Distance(transform.position, lookAtTarget.position) > range) { return false; }

 return true;

}

function OnParticleCollision () { Debug.Log("hit"); ENEMY_HEALTH--; }

Second Script

var bullitprefab : Transform; var savedTime=0; function Update () { var seconds : int = Time.time; var oddeven = (seconds % 30);

if(oddeven) { Shoot(seconds); } }

function Shoot(seconds) {
if(seconds!=savedTime)

{ var bullit = Instantiate(bullitprefab, transform.Find("Spawn"). transform.position,Quaternion.identity);

   bullit.rigidbody.AddForce(transform.forward * 6000);
  
   savedTime=seconds;

} }

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

0 Replies

· Add your reply
  • Sort: 

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.

Follow this Question

Answers Answers and Comments

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Shoot Bullet Delay Enemy 0 Answers

How do i spawn an enemy but with a randomized direction everytime it spawns? 1 Answer

enemy shoots with animation 1 Answer

Troubles With A Shoot Script 1 Answer

Enemy trigger for player 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges