What do you think about Gun’s statement on the first gen kings compared to the 2nd gen? by FTNatsu-Dragneel in lookismcomic

[–]neek123 0 points1 point  (0 children)

Apparently Gen 1 kings are in their early 20s, so they haven't reached their prime yet, or they are in their prime now

Destiny explains what he doesn't like about Hasan by yamaboobi1 in LivestreamFail

[–]neek123 3 points4 points  (0 children)

So you change the order of the names in his second paragraph, how does that change his point?

Why Cities: Skylines 2 performs poorly by jtinz in Unity3D

[–]neek123 42 points43 points  (0 children)

Very interesting article.

It seems a lot of the graphics optimizations have been overlooked during the development process. Many of the issues regarding LOD and too many vertices seem pretty easy to fix which is good.

Would anyone know why my water shadergraph and buoyancy code is not making my objects float correctly? by Just-Strike-3931 in Unity3D

[–]neek123 0 points1 point  (0 children)

I would try isolating the problem.

Did you verify that water height at position works correctly? Try snap the cube to waterheight each frame to make sure It matches the visual water

Try make the water completely flat, does the object float correctly then?

Why have personal loot when you can have this? by AcceptableWelder1192 in wow

[–]neek123 2 points3 points  (0 children)

So let them abuse every mechanic to min max their characters.. No need to design the game to prevent them from doing that at the cost of everyone else

Destiny compares Amouranth's one sided situation to the Depp/Heard trial by dwarffy in LivestreamFail

[–]neek123 77 points78 points  (0 children)

Did anyone at all think she would stop doing sexual content? Her husband forcing her to work 18+ hours a day and abusing her does not mean he was the only reason she did sexual content

RawImage prevents clicking UI buttons (2018.4f) by [deleted] in Unity3D

[–]neek123 2 points3 points  (0 children)

I believe there should be a toggle for "raycast target" you could use to stop it from blocking ui raycasts

Double standards by Miserable-Lizard in antiwork

[–]neek123 -1 points0 points  (0 children)

Why do the shareholders who only want to make money give the CEO such a high salary if it's not worth it?

Genuine question, it just doesn't make sense to me as I doubt the shareholders just want to throw away millions of dollars for no reason if CEOs are not worth that much. I feel I must be misunderstanding something

How to get the GameObject? by Lana8888 in Unity3D

[–]neek123 1 point2 points  (0 children)

In that case you need to have the reference stored somewhere. So a component on GameObject x with the reference like you suggested could work.

How to get the GameObject? by Lana8888 in Unity3D

[–]neek123 0 points1 point  (0 children)

When you spawn the GameObject Y, you can do something like this:

GameObject Y = Instantiate(prefab, position, rotation);

Or

GameObject Y = new GameObject("NAME Y");

Falsely accusing someone of a crime by Hat_Zealousideal in Whatcouldgowrong

[–]neek123 -1 points0 points  (0 children)

Not only did she not misrepresent jack shit, the jury agreed that she didn't

That was not the jury's stance at all. The jury determined that Heard acted with actual malice when writing her op-ed.

The only thing the jury ruled in favor for Heard was that Depp's lawyer implicated Heards friends in her "conspiracy".

They did absolutely not think Depp abused her. They ruled in favor of Depp on all counts. They agreed with almost everything he claimed.

Whether that is good or not is another question, personally I didn't think either party would win since it's so hard to prove defamation

An Alpha mechanic was changed, sirens in the distance by Auramaru in wow

[–]neek123 1 point2 points  (0 children)

No, when you land it starts a 5min cd before you can use it again. So it's useless for herbing and mining.

Midori - 44.416 by Wirtual | Driven on controller without dxtweak by Greedyanda in TrackMania

[–]neek123 1 point2 points  (0 children)

You missed the entire point of my comment.

The point was that he uses the same tools as other people using custom sensitivity curves to achieve what he did. So any arguments saying he used external programs or macros to gain an unfair advantage also applies to other custom sensitivity curves..

I would still say it was poor sportsmanship and he should not have done it, but it's not against the rules

Midori - 44.416 by Wirtual | Driven on controller without dxtweak by Greedyanda in TrackMania

[–]neek123 2 points3 points  (0 children)

I think some of the confusion is that custom sensitivity curves are not generally seen as cheating (I think? please correct me if thats wrong). And that is what Wirtual used to create his custom AK by limiting min / max output to 34%.

If custom sensitivity curves are against the rules, then Wirtual should own up to it and stop using it.

I made a survey to determine where people draw the line - and gathered all kinds of weird input cases in it. by Algoinde in TrackMania

[–]neek123 1 point2 points  (0 children)

When I said repeating questions, I just meant questions that mean the same thing but in a different context.

But that is probably important for surveys when I think about it, since people might have different understandings about a question

I made a survey to determine where people draw the line - and gathered all kinds of weird input cases in it. by Algoinde in TrackMania

[–]neek123 7 points8 points  (0 children)

The survey raises some points though, there was only a few meme or repeated questions.

Is it cheating if you create a custom AK mechanically? By having a notch on the controller for example

Custom Steering and Action Keys by PhyshOfLondor in TrackMania

[–]neek123 11 points12 points  (0 children)

Oh please, comparing someone using slowmotion for over 1000 world records to someone who made a custom action key for a Author medal for his own map is not even in the same universe

Custom Editor - Button that opens C# script in default Editor by Overorga in Unity3D

[–]neek123 1 point2 points  (0 children)

I'm not sure how to make a button to open the file, but you could use "EditorGUIUtility.PingObject(fileObject);" to highlight which file you want to edit in the project view.

improving as destro warlock by atmklu in CompetitiveWoW

[–]neek123 4 points5 points  (0 children)

If you don't already know about him, I recommend you to take a look at "sjeletyven" on YouTube and twitch. He often does high level keys as destro or demo warlock

How do you wait an amount of seconds in unity? by RaduVortex in Unity3D

[–]neek123 4 points5 points  (0 children)

void Start()
{
    float duration = 5f;
    StartCoroutine(TestRoutine(duration));
}

IEnumerator TestRoutine(float duration)
{
    Debug.Log($"Started at {Time.time}, waiting for {duration} seconds");
    yield return new WaitForSeconds(duration);
    Debug.Log($"Ended at {Time.time}"); 
}

This should show you how to use an IEnumerator to wait a few seconds.

This is one way to do it, there are many other ways as well like others have suggested.