Untiy3D Help!

Started by
6 comments, last by nobodynews 10 years, 8 months ago

I am new here so I am not entirely sure where to post this but I figured here would be the right place to post this topic since I am a beginner and this is the beginner section.

My problem is, I was coding a Raycast in JAVA (for a melee system) and I got an error like this (need help with unity.png)

I don't know if it has to do with the code I created for the enemies. (That's why enemy logic is there). The only thing I put for the enemies is for them to lose health. They don't attack or move.

Key:

Melee System Code: Top Right

Error: Top Left

Enemy Logic: Bottom Left

Advertisement

OK so I didn't actually state my question. What is that error? What does it mean? How do I get rid of it?

try to look at the semicolons.

"The only thing that interferes with my learning is my education"

Albert Einstein

"It is a miracle that curiosity survives formal education"

Albert Einstein

my guess is

var Damage ;int = 50; should be

var Damage :int = 50;

always check for typos first.

This isn't a response to your question. But I would also like to correct. You aren't programming in JAVA. It's Javascript. Those are two completely different language.

This isn't a response to your question. But I would also like to correct. You aren't programming in JAVA. It's Javascript. Those are two completely different language.

Ok thanks Ill keep that in mind next time!

Hmm, doesnt look like Javascript either. Seems to be Unityscript which is also quite different to Java and Javascript ;)

If you want to lookup syntax examples using Google, then use Unityscript in the search term or you might get something that requires a very different compiler.

http://tinyurl.com/shewonyay - Thanks so much for those who voted on my GF's Competition Cosplay Entry for Cosplayzine. She won! I owe you all beers :)

Mutiny - Open-source C++ Unity re-implementation.
Defile of Eden 2 - FreeBSD and OpenBSD binaries of our latest game.

Tangential to the discussion, but it's spelled Java, not JAVA.

C++: A Dialog | C++0x Features: Part1 (lambdas, auto, static_assert) , Part 2 (rvalue references) , Part 3 (decltype) | Write Games | Fix Your Timestep!

This topic is closed to new replies.

Advertisement