I am working on a project where I have four to five robots that I would like to control using the keyboard inputs simultaneously or individually. Does unity engine support that? If so, could you please provide any references for the same?
Thank You.
Generally control of external hardware is done through plugins, such as those provided by the hardware manufacturer, or else perhaps through USB drivers you can download and / or get from the asset store.
Usually multiple things are handled by having each item on a separate address / identifier and speaking to each one individually.
Whatever you do, start with the basics for controlling external hardware, whatever kind of hardware you’re working with. All of this is extremely well-traveled ground with tutorials and other resources available online.
Two steps to tutorials and / or example code:
- do them perfectly, to the letter (zero typos, including punctuation and capitalization)
- stop and understand each step to understand what is going on.
If you go past anything that you don’t understand, then you’re just mimicking what you saw without actually learning, essentially wasting your own time. It’s only two steps. Don’t skip either step.
Work like this guy:
Imphenzia: How Did I Learn To Make Games:
Sure, I’ll definitely keep that in mind. Thanks for sharing.