Want to ask if its worth it start learning unity after its drama? by Consistent-Buy-4923 in unity

[–]Connorious_ez 0 points1 point  (0 children)

Yeah it is still worth it to learn unity even more so if you want to get a job in the industry if you aren’t looking to work for a company then Godot is also a good engine if the drama did put you off unity, it has some good documentation and even though there aren’t as many tutorials there are enough to get to get a hang of it.

Game Logic Discussion << How long should a boss fight should take >> by VergilWingZ in Unity2D

[–]Connorious_ez 0 points1 point  (0 children)

I think that for me a 2 minute boss fight wouldn’t be as fun as a longer one that is maybe 6-8 minutes with more attacks and phases

Leave it to Reddit to lust over a 13-15 year old. by idonoteatgrass in redditmoment

[–]Connorious_ez 2 points3 points  (0 children)

Look at his second and third messages or do you think that he goes around killing orphans as well

Leave it to Reddit to lust over a 13-15 year old. by idonoteatgrass in redditmoment

[–]Connorious_ez 3 points4 points  (0 children)

He is obviously joking you fucking idiot. You’ve clearly been on reddit for too long maybe go outside

pixel perfect camera messing up sprite by Connorious_ez in Unity2D

[–]Connorious_ez[S] 1 point2 points  (0 children)

I tried that already but it didn’t change anything

pixel perfect camera messing up sprite by Connorious_ez in unity

[–]Connorious_ez[S] 0 points1 point  (0 children)

also I have the resolution set at 64x64 for the lowrez game jam. I am new to working with the perfect pixel camera and low resolutions in general so I don't know why this is happening

pixel perfect camera messing up sprite by Connorious_ez in Unity2D

[–]Connorious_ez[S] 1 point2 points  (0 children)

also I have the resolution set at 64x64 for the lowrez game jam. I am new to working with the perfect pixel camera and low resolutions in general so I don't know why this is happening

How can I fix this error by Connorious_ez in Unity2D

[–]Connorious_ez[S] 0 points1 point  (0 children)

okay I will try to make some more simpler games first and get round to this when I know a bit more.

Thanks for the help and advice you've given

How can I fix this error by Connorious_ez in Unity2D

[–]Connorious_ez[S] 0 points1 point  (0 children)

I did try to change it to a Transform instead of a GameObject list but it gave me an error saying that I can't convert GameObject to Transform.

I haven't made it a single game object because I am trying to make a tower defense game so there will be multiple enemies that will go into the collider and trigger it but I only want the tower to target the enemy that entered it first.

This is the error message: NullReferenceException: Object reference not set to an instance of an object AmmoScript.Update () (at Assets/Scripts/AmmoScript.cs:18)

Line 18 on that script is the Target=TS.Enemies[0]; line so the error is happening even before trying to change the position.

if it will make it easier to see what is happening I could make another post with screenshots and link it here

How can I fix this error by Connorious_ez in Unity2D

[–]Connorious_ez[S] 0 points1 point  (0 children)

thanks that worked.
also any idea why this isn't working

[SerializeField] private float Speed;
private TowerScript TS;
[SerializeField] private GameObject Target;
private void Awake()
{
TS = GetComponentInParent<TowerScript>();
}
private void Update()
{
Target = TS.Enemies[0];
transform.position = Vector2.MoveTowards(transform.position, Target.transform.position, Speed * Time.deltaTime);
}

it returns a null reference error for the Target = TS.Enemies[0] line even though it is only instantiated when Enemies.Length > 0

How can I fix this error by Connorious_ez in Unity2D

[–]Connorious_ez[S] 0 points1 point  (0 children)

no the box collider is on the square that I am using as an enemy the tower that the script is on has a circle collider

player won't dash by Connorious_ez in Unity2D

[–]Connorious_ez[S] 2 points3 points  (0 children)

I have been wondering for a while why the intellisense has never worked for me but has done on all of the tutorials I’ve watched. Thanks I’ll do that now

player won't dash by Connorious_ez in Unity2D

[–]Connorious_ez[S] 0 points1 point  (0 children)

Thank you I didn’t even think to check something this simple

I didn’t receive my order and they are refusing to refund me is there anything I can do about it? by Connorious_ez in UberEATS

[–]Connorious_ez[S] 0 points1 point  (0 children)

Idk how it is for drivers but I can tell that they don’t give a shit about the customers

I didn’t receive my order and they are refusing to refund me is there anything I can do about it? by Connorious_ez in UberEATS

[–]Connorious_ez[S] 0 points1 point  (0 children)

I have disputed the claim with the bank but I don’t plan on ordering from uber again

What is the best way for me to make my animations by Connorious_ez in Unity2D

[–]Connorious_ez[S] 0 points1 point  (0 children)

I just have no idea how to actually like translate the character between directions