Dear all,
I’m looking around on which game development kit to use for my research project on Artificial Intelligence. Im creating a 3d world for ‘creatures’ to live in, for whcih I’ll be programming the AI myself. I’ll be having to untether the AI from the Unity in-game clock, so I want it to run on a seperate thread of the program.
Does Unity’s C# give me complete access to the .NET library, so I can create a new thread for my AI to work in?
I want my AI complete seperate from the gameworld itself, so the only thing the game world does is calculate what happens in the world. It produces a list of important information for the creature and posts this every cycle. The creature’s AI reads this list, and decides on actions, which it posts somewhere else, and the game world reads this action and acts accordingly. Both the AI instance and the world are thus basically ‘seperate’ executables, and they only share the two lists (current state, and actions).
If anyone knows this is possible in some other way than multithreading, I’d also love to know that. I’ve read a lot about Unity, and it seems like an awesome environment to work in.
Yours sincerely,
TiRune