skip to Main Content

I am a designer and I code only a little bit. I would like to know how I could use the output of the Twitter API (which I master) to use them on Unity. Which programming language would be the best? The goal is for me to do real-time creation on Unity.

Thanks in advance for your help! 🙂

2

Answers


  1. I believe you can have your twitter bot communicate with unity by using files. So you can write in a file then read the content with C# during runtime.

    Login or Signup to reply.
  2. The primary programming / scripting language used in Unity is C#.

    There is a library for the Twitter API v1.1 called Twity. The current version of the Twitter API is v2 and you’d probably need to look for something that worked with that.

    In general, you’ll want to be more specific in your question for Stack Overflow – we’d expect to see a code question including what you’ve written, and what is not working – see how to ask.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search