Rainys
❔ is there an asynchronous Console.ReadLine() replacement?
basically just a console app (you can use
Console.WriteLine()
and Console.ReadLine()
) for a video game server i'm making, i use a library which does all the heavy lifting so i only do stuff like check if someone types in port
then i switch the port etc.8 replies
❔ Align items Sprites in Unity
yeah, also make sure to set the font allignment to center, both the vertical and horizontal one, and also what was the guy trying to tell you is that: all canvas' children have a Rect Transform, you have a Transform, and for UI Rect Transforms are a life saver mainly because you can anchor/allign things easily
17 replies
❔ How to limit while loop updates per second amount
i'm using a server system/framework or whatever you want to call it called
Riptide
. and all it basically does is allows the programmer to send "messages" between the clients and the server. However what should happen with the "messages" is all the programmer's work, but for now my question is what is the best way to implement the fixed update function thing in C#139 replies