Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Unity3D let you code with Java?

I have been searching but I get the mixed up answers with Java and Javascript. Basically I am wondering if Unity3D lets me make games with Java? I want to make browser based games, not android.

like image 221
tur sander Avatar asked Oct 03 '13 06:10

tur sander


People also ask

Can I code in Unity with Java?

In Unity, you write simple behavior scripts in C# or JavaScript (UnityScript). Both languages are easy to use and run on the integrated scripting runtimes. As stated above, Unity as of now don't support java coding.

What programming language does unity3d use?

The language that's used in Unity is called C# (pronounced C-sharp).

Is Unity a C++ or Java?

The most recent version of the language is C++23 and newer versions are scheduled for release every three years. Both Unity and UnrealEngine utilize C++ in their source code: Unity is partially written using C++ and C#, whereas Unreal Engine is written in C++ entirely.

Does Unity use JavaScript or Java?

It doesn't. It supports UnityScript, which is very similar to JavaScript. However, most Unity developers eschew UnityScript in favour of C#, and rightly so.


2 Answers

Currently unity3d doesn't support java.

According to unity3d website.

Scripting with Unity brings you fast iteration and execution and the strength and flexibility of a world-leading programming environment. Scripting is uncluttered, straightforward and incredibly fast. In Unity, you write simple behavior scripts in JavaScript, C# or Boo. All three languages are easy to use and run on the Open Source .NET platform, Mono, with rapid compilation times.

What Language is Used To Develop Using Unity

http://unity3d.com/unity/workflow/scripting

like image 61
Prabhakaran Ramaswamy Avatar answered Oct 14 '22 09:10

Prabhakaran Ramaswamy


In Unity, you write simple behavior scripts in C# or JavaScript (UnityScript). Both languages are easy to use and run on the integrated scripting runtimes.

Read more: https://unity3d.com/unity/workflow/scripting

As stated above, Unity as of now don't support java coding.

For Java, libGDX is the best option: http://libgdx.badlogicgames.com/

Though Unity has better support and documentation, libGDX is also really powerful.

Clash of the Olympians is a popular game made with libGDX https://play.google.com/store/apps/details?id=com.ironhide.games.clashoftheolympians

like image 1
Blesson Jose Avatar answered Oct 14 '22 08:10

Blesson Jose