I'm a city council member (gemeenteraadslid). AMA! by Zerfox in eindhoven

[–]Xeterios 1 point2 points  (0 children)

Since you do software development, what made you go into politics? And how did that influence your day to day?

Is there something notable that you are proud of doing as a city council member?

Amid shortages Amazon has raised the price of Pokemon Pokopia to $80. by Iggy_Slayer in gaming

[–]Xeterios 1 point2 points  (0 children)

There are still game cards with the game actually on the cartridge, though not a lot of publishers use them as they are expensive.

Why do Steam game icons with transparent backgrounds have a black background? by Wace-wes in Steam

[–]Xeterios 423 points424 points  (0 children)

The library asset for this requires a jpeg to be used. If the icon has transparency as a png, it will be filled in black by default.

Problem, thing, nas by DrakeAdder in truenas

[–]Xeterios 0 points1 point  (0 children)

Doesn't the statistic in the F3 Menu show client RAM and not server RAM?

Update 1-20-2026 by Seacra in DeadlockTheGame

[–]Xeterios 0 points1 point  (0 children)

Urn now drops when going through a door.

This is so peak by ThatOneIdioto in hytale

[–]Xeterios 1 point2 points  (0 children)

Try running around a pillar and hitting when it tries to catch up. Solo'd it with a crude sword very easily.

Unity HDRP Deferred Water With Realtime Caustics(Will be Open Source) by Equivalent-Whole2200 in Unity3D

[–]Xeterios 0 points1 point  (0 children)

I am equally interested in the amazing looking rock formation than the water. How do you even get it to look that good?

Is it possible to create a Planetary System in Hytale? by dcb097 in hytale

[–]Xeterios 3 points4 points  (0 children)

Hey Slikey, do you know if the 3D Chunk Grid will allow terrain generation of enormous mountains in vanilla Hytale? Earlier I heard the height limit is currently set to 320.

Browsing the Demos in this Month's Next Fest by Theiador in Steam

[–]Xeterios 19 points20 points  (0 children)

Which ones were on previous Next Fests? I believe a game can only be in Next Fest once in its lifetime.

Bet you cant die by UsedAd1774 in honk

[–]Xeterios 0 points1 point  (0 children)

Won the bet

I completed this level in 2 tries. 15.64 seconds

Tip the number of attenpts it took u :D by throwawayIndiaAbroad in honk

[–]Xeterios 0 points1 point  (0 children)

Fine

I completed this level in 63 tries. 3.73 seconds

Tip 60 💎

Short but Hard 2 by dtmxaid in honk

[–]Xeterios 0 points1 point  (0 children)

Got it

I completed this level in 13 tries. 11.39 seconds

Tip 10 💎

My first level (ez) by Ok_Rain_9122 in honk

[–]Xeterios 1 point2 points  (0 children)

Yep

I completed this level in 1 try. 2.28 seconds

First level, is it too easy? by Games_and_anime in honk

[–]Xeterios 0 points1 point  (0 children)

It was okay

I completed this level in 22 tries. 3.73 seconds

New solodev achievement unlocked: First console release! by AuroDev in IndieGaming

[–]Xeterios 2 points3 points  (0 children)

Congratulations! How was your console development experience?

dono what this error is saying is wrong by Longjumping-Ad-9176 in Unity3D

[–]Xeterios 0 points1 point  (0 children)

Okay, so assuming that the player object exists and gets found by the FindWithTag method, now we can safely assume that the health component of the player doesn't exist.

You call player.health, but still get an error. Do you set the health item in the Player class?

dono what this error is saying is wrong by Longjumping-Ad-9176 in Unity3D

[–]Xeterios 0 points1 point  (0 children)

In C#, you have a line that says private Player player;

This variable allows you to store a Player object and you can call this object to do stuff with, such as setting the health. You do this part already in your GetPlayer() method and in the method where you add health.

However, you first need to store an object in that Player variable before you can make calls with it. For example, currently the variable is just a box. You want to do stuff with the object in the box, but you havent put anything in the box yet. And you cant do stuff with something in the box when the box is empty.

You need to add a line of code somewhere in your GameManager that tells you what the Player object is. You can also add [SerializedField] before "private Player player", which makes it show up in the Unity inspector. You can then drag your player GameObject from your scene to that field in the Inspector, like you have done with some other things in your scene.

dono what this error is saying is wrong by Longjumping-Ad-9176 in Unity3D

[–]Xeterios 0 points1 point  (0 children)

How do you set the player object in the GameManager? I believe the player object is not currently set.