Uploader Comments (BurgZergArcade)
Top Comments
-
@kxmode What until you meet the trapezoids!
-
I just got pwned by a very aggressive cube o_o
All Comments (112)
-
Guys, if you have an error, you're better off trying to fix it yourselves rather than commenting here and waiting a month for a response. 90% of the time your error will be either a typo, a ; error, or a { } error. Just look over your script and you'll be fine.
-
Help!!
NullReferenceException: Object reference not set to an instance of an object
PlayerAttack.Attack () (at Assets/Scripts/PlayerAttack.cs
:27) PlayerAttack.Update () (at Assets/Scripts/PlayerAttack.cs
:15) -
Well the tutorials continue to be brilliant and informative, but I am really stuck with the cube attack. It still follows me around ignoring the fact it has the commands to attack, and its identical to how you've done it (i've been re-watching the video for hours now to try and find what I've done wrong) and it just won't have it. I tried removing if(direction > 0)" which also did nothing. Any clues as to what's going on?
-
Well I tried that, and it STILL doesn't work, and its getting annoying now.
-
i just got owned by a cube!!!
-
hey burg, your tutorials are amazing , i havent watched them in a while but ive been keeping up on your current videos and blogs about funny tech unwrapping and unity reviews, thing is i havent needed to use them since i started learning c# from reading a book, now im back cause im compleltly puzzled on raycast it just baffles me left and right, but i know alot of users use it for convience sake. Is it really the convient to use?
-
@anzern it doesnt work i deleted it but dont take damage wrom the cube :(
-
If like me you're finding the cube won't reduce your health, I seemed to fix it by removing the "if(direction > 0)" from the EnemyAttack script when it's checking the distance is below 2.5f
-
@racrub720 thank you!
-
@MartinPivotMaster The fire would have to be at a set position, so im guessing instead of GetKeyUp to cause a set amount of damage you would use the code GetPosition and set and X/Y coordinate where the fire is. You can try that, I believe that might work.
Help
Unexpected symbol `if '
Keromation78 1 month ago
@Keromation78 You have a typo. Look around and find it.
BurgZergArcade 1 month ago
Hey sorry kind of a noob at this but I have an error: Assets/Scripts/PlayerAttack.cs(39,21): error CS1525: Unexpected symbol `Debug' Any help would be much appreciated.
Ashyram7 2 months ago in playlist Unity3d Tutorial - Hack & Slash RPG Part 1-200
@Ashyram7 This sounds like you made a typo. Check where the error occurred and also just before it.
BurgZergArcade 2 months ago
I don't quite understand the difference between void start and void update. I know what the update function is but i don't know what the start function is so I don't know whether to put my code under void start or void update. Is there any way you can help me on this?
otacon1000 2 months ago
@otacon1000 Start is called once when the script is first loaded (it is called after the Awake function). Update is called every frame.
BurgZergArcade 2 months ago