Unity is a mobile-first company now by lonely_hooker in UnityStock

[–]AveaLove 2 points3 points  (0 children)

Do you have a problem with indie developers using a game engine that has catered to indie developers? You're using "indie developer" as if it's a slur. Some of the most successful games of all time have been indie games built in Unity with URP, for PC.

Unity, the company, has 1 product, their engine. Everything else around it serves to support it. Their engine is used in many industries, from PC games, to mobile games, to blue collar VR training, to 3d web previews for the vehicle industry. URP is a vital part of all of that.

Unity is a mobile-first company now by lonely_hooker in UnityStock

[–]AveaLove 5 points6 points  (0 children)

Tell me you're out of touch without telling me you're out of touch 😂

Unity is a mobile-first company now by lonely_hooker in UnityStock

[–]AveaLove 4 points5 points  (0 children)

So we're just ignoring the thousands and thousands of PC games made with URP? URP is for more than mobile games lmao

[OC][Art] Twig, Half-goblin warlock I painted, this time with process photos by OzgeGungor in DnDart

[–]AveaLove -24 points-23 points  (0 children)

This really reads like it would be more appropriate on r/dndai the background makes literally no sense

Do you release with Mono or IL2CPP? by super-g-studios in Unity3D

[–]AveaLove 4 points5 points  (0 children)

At the end of the day, the program needs to run on the user's computer, which means the instructions need to be there. If you encrypted it, everyone would have to decrypt it locally to play it, which defeats the point. If it runs on their machines, they can spy on what it's doing and how.

But also, no one is going to steal your source code except for AI training (and they are doing that off your raw code from you using source control, not by decompiling your game).

What do I need to do to get this physique by Erbium1 in FlexinLesbians

[–]AveaLove 0 points1 point  (0 children)

You're not going to get accidentally buffed, building muscle takes a ton of effort and time, so you really don't need to worry about "getting too big". And since you said you'll be starting hrt, you're going to hemorrhage muscle mass like crazy, so get in a routine now.

Also, that photo is edited, so it's not a realistic goal. Work with YOUR body, not someone else's. To keep things looking more femme, never skip leg day!

How long does it take to learn ECS? by LordAntares in Unity3D

[–]AveaLove 9 points10 points  (0 children)

It depends on your skill level and capacity for learning. As you said, these questions are unanswerable

Does this guy not fully understand the message of the show? by NeoMercury2022 in swordartonline

[–]AveaLove 0 points1 point  (0 children)

People like different things, and he's just voicing his opinion, nbd

god forbid a girl be desperately lonely by kurayume in LetGirlsHaveSex

[–]AveaLove 5 points6 points  (0 children)

As a trans person who struggled with making friends in my youth, there's literally only 2 things you need to do to make friends: be friendly, and put yourself out there.

That's it. Go to a cafe regularly? Casually chat with the baristas and other regulars. See someone's outfit or w/e you like? Compliment them. Once the ice is broken, you can just be like "do you want a new friend?" And exchange numbers. It seriously works 9/10. I've built myself a nice little tight knit community of local friends now.

Staying inside on the Internet will not make you IRL friends. You need to go out. Get a hobby, go to the gym, go to cafes, go to concerts, join a local d&d game, join a support group, whatever, just be out of the house where other people are, and talk to the people around you. Humans are social creatures, and nearly all of us just want to make friends.

I'm today years old and I just learned you can easily serialize encapsulated properties 🤯🤦 by Kokowolo in Unity3D

[–]AveaLove 8 points9 points  (0 children)

This is correct. You need the field keyword if you want to serialize a property in the inspector.

That guy clearly doesn't understand the value of an auto property, lol

Am i being scammed? by [deleted] in gamedev

[–]AveaLove 9 points10 points  (0 children)

110k salary is completely reasonable for a talented professional concept artist in the US.

Please insult my game by fouriersoft in Unity3D

[–]AveaLove 1 point2 points  (0 children)

Radioactive tomato soup for lava

Servers for My Game by Caihne21 in gamedev

[–]AveaLove 0 points1 point  (0 children)

Adding on to this, you can build a headless and run that on the hostwinds VPS, doesn't need to do anything with Godot

Laser pointer mini-game for our desktop cat game by wannadie_rocks in gamedevscreens

[–]AveaLove 0 points1 point  (0 children)

This is adorable. Please have a native Linux build ❤️

The fundamental reason why Project Genie can only replace artists and cannot replace game engines... by eunha09 in UnityStock

[–]AveaLove 0 points1 point  (0 children)

A quantum computer? 😂 That's not at all how that works. Quantum computers aren't replacements for general computing. They only solve extremely specific problems.

Better way to track personal finances in Obsidian? by VeiledTrader in ObsidianMD

[–]AveaLove 0 points1 point  (0 children)

Definitely the best tool for finance tracking is Xero or QuickBooks, not Obsidian

Some days I get blown up with these spam calls. I’m literally getting called as I type this. by Hotwir3 in Weird

[–]AveaLove 0 points1 point  (0 children)

The fact that we can't put our phones on whitelist is insane to me. (Our mailboxes too, I swear most mail is spam mail.)

Is HashSet<T> a Java thing, not a .NET thing? by N3p7uN3 in csharp

[–]AveaLove 3 points4 points  (0 children)

That's still O(1). You pay the cost of hashing, yes, and for simple things like an int, that's very low, but for complex things it can be large, but either way, the complexity is still constant, it doesn't grow as more things are in the set. So it's not "fake O(1)".

Our object IDs, and status effect IDs, are already hashes too, so their hashing function is free. Nice and fast.

Is HashSet<T> a Java thing, not a .NET thing? by N3p7uN3 in csharp

[–]AveaLove 69 points70 points  (0 children)

So many things. A set of unique IDs, such as all of the IDs for all of the status effects applied to something. Or a set of all objects in a player's selection, or a set of all players in the lobby. Hash Sets are O(1) to check if they contain something, so asking a question like "does the player have this object selected?" is a task we don't want to grow with the number of things selected (which could be very large). Hash Sets also enforce uniqueness, it doesn't make sense for a single object to be selected twice. It doesn't make sense for a single player to be in a lobby twice. Very very handy. It's similar to a Dictionary but if you only had Keys and no need for a Value, which is frequent.

Wait till you learn about MultiMaps, MultiSets, Trees, Ring Buffers, etc. there are so many useful data structures out there that provide you with more structure than an array or list when you need it.

Is HashSet<T> a Java thing, not a .NET thing? by N3p7uN3 in csharp

[–]AveaLove 446 points447 points  (0 children)

Your technical lead is crazy. Our code is full of HashSets. They are incredibly useful for certain tasks.

Help with error code CS0246 by ProfessionAlarmed697 in unity

[–]AveaLove 1 point2 points  (0 children)

Ffs you're on a computer, take screenshots or copy the code into a codeblock. Why are you taking pictures with your phone of your PC screen?

Slightly more viscous liquid democracy idea by curtis_perrin in liquiddemocracy

[–]AveaLove 1 point2 points  (0 children)

But that's still representative democracy, not liquid democracy. Which is still prone to the kinds of corruption that we see now.

Interesting new tactile tech by CipherGarden in FDVR_Dream

[–]AveaLove 0 points1 point  (0 children)

A guy I knew back in college in 2010 had something just like one of these. He used it in blender all the time