Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can we make a game with python in unity? [closed]

I have few questions about programming a game (3d or 2d) with a python language and Unity game engine Can we make a game with python in Unity game engine?
if yes how?
please share basic tutorials about this topic.

like image 586
Kia4king Avatar asked Oct 17 '25 18:10

Kia4king


1 Answers

Unity originally comes with support for scripting in C# and Javascript by default. If you wish to utilize all the features of Unity3d, I would recommend you script in either of these.

That being said, there are third party interpreters and plugins that enable you to use Python on unity, but I would recommend sticking to C#

Refer these for ways to use Python in Unity:

UniPython - Python Scripting in Unity3D based games

Python interpreter in Unity

like image 67
Ankit Singh Avatar answered Oct 19 '25 06:10

Ankit Singh