can anyone help me with this? im very new with scripts
thank you!
can anyone help me with this? im very new with scripts
thank you!
pls
up
Are you talking about users of the linux system your game is running on?
Well considering that when you’re in mono you’re sort of independent from the system in general (rather you’re abstracted away from the system). So you need to communicate back through.
You can do this by calling an external process (System.Diagnostics.Process is a way of doing that), or communicating via a native library (import a C++ library compiled for linux).
Next concern is that for most system level queries like user information often requires a superuser status, you’re most likely going to be barred from polling this information unless your game is running as a user with that permission.
…
Is there a reason you need this?