• 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 RaysFan · Jul 20, 2012 at 08:34 PM · tutorial

Burg Zerg Arcade Tutorial Help

I am on number 6 tutorial for burgzerg arcade. and here is error: 31,22: A namespace can only contain types and namespace declarations. Here is the script.

 using UnityEngine;

using System.Collections;

public class PlayerAttack : MonoBehaviour { public GameObject target; public float attackTimer; public float coolDown;

// Use this for initialization void Start () { attackTimer = 0; coolDown = 2.0f; }

// Update is called once per frame void Update () { if(attackTimer > 0) attackTimer -= Time.deltaTime;

if(attackTimer < 0) attackTimer = 0;

if(Input.GetKeyUp(KeyCode.F)) { if(attackTimer == 0) Attack(); attackTimer = coolDown; } }

}

private void Attack() { float distance = Vector3.Distance(target.transform.position, transform.position);

Vector3 dir = (target.transform.position - transform.position).normalized;

float direction = Vector3.Dot(dir, transform.forward);

Debug.Log(direction);

if(distance < 2) { if(direction > 0) { EnemyHealth eh = (EnemyHealth)target.GetComponent("EnemyHealth"); eh.AddjustCurrentHealth(-10); } }

}

Its on private void Attack() { I get the error. Any suggestions?

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

3 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Julien-Lynge · Jul 20, 2012 at 08:42 PM

@RaysFan, I took your error (A namespace can only contain types and namespace declarations) and plugged it into google, and here's the very first result I saw:

http://answers.unity3d.com/questions/151609/a-namespace-can-only-contain-types-and-namespace-d.html

Next time, please try to do a bit of research before posting a question.

Comment
Add comment · Show 4 · Share
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
avatar image RaysFan · Jul 20, 2012 at 08:53 PM 0
Share

Ummm...my thing is inside the brackets...what did I do wrong?

avatar image RaysFan · Jul 20, 2012 at 08:53 PM 0
Share

hmm..maybe not..let me check

avatar image RaysFan · Jul 20, 2012 at 08:59 PM 0
Share

so what did I do wrong? I don't know where to add brackets or what? And how can i fix it?

avatar image RaysFan · Jul 20, 2012 at 10:01 PM 0
Share

anyone help??? Please?

avatar image
0

Answer by Doireth · Jul 20, 2012 at 08:47 PM

http://docs.unity3d.com/Documentation/ScriptReference/index.Writing_Scripts_in_Csharp_26_Boo.html

Mentions that Unity doesn't support the use of namespaces.

Comment
Add comment · Share
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
avatar image
0

Answer by Doireth · Jul 20, 2012 at 10:07 PM

After the line:

 if(Input.GetKeyUp(KeyCode.F)) { if(attackTimer == 0) Attack(); attackTimer = coolDown; } }

Remove one of the braces as there seems to be an extra.

Comment
Add comment · Show 2 · Share
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
avatar image RaysFan · Jul 20, 2012 at 10:14 PM 0
Share

Thanks..I think that fixed it! And I will research more before asking.

avatar image Julien-Lynge · Jul 20, 2012 at 10:22 PM 0
Share

Sounds good. It's always a good idea to match up your brackets to make sure you don't have an extra one or are missing one. This can lead to all sorts of weird errors as Unity starts to see your code out of context (methods outside of a class or within another method, for instance).

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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

6 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Car movement script ? 1 Answer

[Help] Scripting help 0 Answers

Error CS1502 Help! 1 Answer

I'm doing the Roll-A-Ball tutorial and I entered the Player Controller script exactly as the tutorial has it, but I put mine in Unitron and errors are occurring that I don't know how to fix. 2 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges