Unity3D is a commercial development platform for creating games, interactive 3D applications, training simulations, and medical and architectural visualizations.

learn more… | top users | synonyms (1)

18
votes
18answers
8k views

Unity3D, Torque3D, Google O3D, WebGl…which to choose? [closed]

for development of interactive 3d web applications, which engine is recommended? I am aware that WebGL has been anounced to become standarized for all browsers in the near future (1~2 years). I am ...
16
votes
4answers
13k views

Game development with XNA or Unity3d

What can make a game developer to choose between XNA or Unity 3d as game development platform and what are the pros and cons of choose each one?
15
votes
2answers
3k views

Interacting with avatar using Kinect and Unity 3d

I want to move the avatar based on the movement the player using kinect and Unity3d, are there any good tutorials. We are using unity and Kinect interface to create a simple application. Based on the ...
13
votes
6answers
8k views

Unity vs Torque game engines and IDE environment

I want to get people's opinion of Torque and Unity and their IDE tools. You build Torque games using one of their engines (I'm currently interested in the iPhone engine), and Torque Game Builder ...
12
votes
3answers
2k views

Why calling Process.killProcess(Process.myPid()) is a bad idea?

I've read some posts saying using this method is "not good", shouldn't been use, it's not the right way to "close" the application and it's not how android works... I understand and accept the fact ...
11
votes
3answers
10k views

Android and Unity 3D game development

I am starting to explore the game development using unity 3d for android. I have downloaded the trial version of unity 3.3. I went through few tutorials. I have one question that is not answered. In ...
11
votes
6answers
8k views

What will be in C#'s future in 10 years? [closed]

I thought I'd be learning C++ at University, but it seems that they've now dubbed C# as an industry standard language. I never thought I'd bother with it, but it's actually a very nice language. The ...
11
votes
3answers
2k views

onCreate() after finish() in onStop()

I have an Android activity that calls finish() inside it's onStop() so when I switch to other activities (including the main menu), the activity will be shut down. Up this point, everything works as ...
11
votes
1answer
220 views

There exists both implicit conversions from 'float' and 'float' and from 'float' to 'float'

In probably the best error message I've gotten in awhile, I'm curious as to what went wrong. The original code float currElbowAngle = LeftArm ? Elbow.transform.localRotation.eulerAngles.y ...
10
votes
8answers
7k views

C# game development after XNA

I am a game developer who made games in .Net languages with XNA for the past four versions of it. Unfortunately now there's this news: ...
10
votes
1answer
8k views

Unity3d integration with android

I need to create an android application which consists of parts written on Unity3d (animation and so on) and on AndroidSDK (by androidSDK I mean few activities written in java, manifest and resources) ...
9
votes
1answer
3k views

How does StartCoroutine / yield return pattern really work in Unity?

I'm new to Unity and C#. I understand the principle of coroutines (mainly from iterators in Python). I can also get the standard StartCoroutine / yield return pattern to work in C# in Unity, e.g. ...
8
votes
3answers
3k views

How does this function with a “yield” work in detail?

I got this method (inside a Unity C# Script), but I do not understand how the "yield" part actually works. I know from the MSDN that the function will return an IEnumerator which I could iterate ...
8
votes
5answers
671 views

How can I multiply a float and a generic type?

I'm programming in Unity 3.4.2 on OS X using C#. I have a class like the following: class Foo<T> { public T DoFoo(T bar) { float aFloatValue = 1.0f; // Do other ...
8
votes
2answers
10k views

Oolong, SIO2 or commercial Game engine for 3D iPhone Games newbie?

I'm trying to pick between the Oolong and SIO2 iPhone game engines for my first game programming project. I have some Cocoa experience and many years of C++ including relatively low level 2D graphics ...
8
votes
2answers
114 views

C# JIT error with Linq OrderBy

so im receiving the following error on my iOS device ExecutionEngineException: Attempting to JIT compile method ...
8
votes
2answers
732 views

How to collide objects with high speed in Unity

I try to create game for Android and I have problem with high speed objects, they don't wanna to collide. I have Sphere with Sphere Collider and Bouncy material, and RigidBody with this param ...
8
votes
2answers
258 views

A* Pathfinding over multiple grids

I'm attempting to implement A* pathfinding around a cube, the cube is made up of 6 grids and to keep it simple I have 4 methods GetXPlus, GetXMinus, GetYPlus, GetYMinus. Each method checks to see if ...
8
votes
1answer
349 views

XML Comments for Override Properties

I'm using MonoDevelop 2.4.2 for OS X (the version that comes with Unity 3.4.1), and was wondering if there was some way to inherit comments from the base class or property. Example: public class Foo ...
7
votes
2answers
918 views

What are the “gotchas” when developing an iPhone Game?

Am used to developing business and reference apps. Now I have to do an iPhone game. What tips can you share to help me with: understanding the scope of the project defining the deliverables ...
7
votes
6answers
448 views

Why isn't this code executing correctly (video)?

I'm using Unity (3.4) Monodevelop (2.4.2) and it's not executing the code properly when I step through it in the debugger. Here's a link to the video that shows it, please run it at 720p and ...
7
votes
3answers
210 views

Is there something like python decorators for c#?

I am wrapping calls to an API and most of my methods have in their first lines: if ( !Gree.Authorizer.IsAuthorized() ) { return; } In python I would decorate those methods with something like ...
7
votes
1answer
8k views

Unity vs Udk vs CryEngine [closed]

Which is the best to learn? What are there advantages and disadvantages?
7
votes
2answers
130 views

Processor count reliability

I'm making an Android game and the performance difference between single core phones such as Galaxy S and dual-core Galaxy S2 is comparable to night and day. Thus instead of making different versions ...
7
votes
5answers
380 views

How to get data off of a character

I am working on a project in Unity which uses Assembly C#. I try to get special character such as é, but in the console it just displays a blank character: "". For instance translating "How are you?" ...
7
votes
1answer
308 views

Perlin terrain pages mismatched: elusive bug

I've been developing a game in the Unity Game Engine that I hope will be able to use paged terrain for an infinite world (common theme nowadays). My terrain generator uses perlin noise exclusively. ...
6
votes
2answers
3k views

Official Kinect SDK and Unity3d

Does anyone know anything about using Kinect input for Unity3d with the official SDK? I've been assigned a project to try and integrate these two, but my super doesn't want me to use the open Kinect ...
6
votes
3answers
6k views

Integrating Unity with Eclipse - How to follow the “official” tutorial's instructions?

I have read all the documentation I found on how to integrate Unity3D projects targeted to Android into eclipse. The reason I want to do that is to be able to call the Unity3D Activity within my own ...
6
votes
5answers
4k views

Mixing Unity generated code with Objective-C in iOS?

Is it possible to mix iOS code and interface elements with Unity generated iOS code? For example if I am working with a game developer who is developing a game in Unity, could I take his xCode ...
6
votes
3answers
531 views

C# as a scripting language [duplicate]

Possible Duplicate: Best way to call Managed .NET code from Unmanaged code I'm curious to know if I could possibly use C# as a scripting language hosted in a c++ native application. I've ...
6
votes
3answers
767 views

Does Dynamo IoC work with MonoTouch and MonoDroid?

I'm curious, out of all the possible C# .NET inversion of control solutions out there, if anyone has ever tried Dynamo IoC (http://www.dynamoioc.com/) and whether or not it works with projects ...
6
votes
1answer
290 views

OSX - Publishing Unity Games

How do I push Unity Games for Mac OSX to the Mac Store? I can't seem to figure out and have looked every where. I know you have to modify the info.plist and package, but there is no definitive guide! ...
6
votes
2answers
5k views

How to start an Android activity from a Unity Application?

I know this seems to be a trivial question but I could not find any concrete answer anywhere on the internet. I saw this very similar question on stackoverflow: How to start Unity application from ...
6
votes
2answers
638 views

Lightweight IoC container that works in Unity3D

Can somebody suggest me a good and light c# IoC container that works in Unity3D and does not rely on Service Locator pattern? Thank you!
6
votes
1answer
108 views

Make Player Flash When Hit

I'm trying to make my player flash when hit. I have hit detection working. He currently changes to red. I'm wondering how to make the actual flashing occur. Here's a snippet that handles being hit: ...
6
votes
1answer
186 views

Problems when trying to use ksp/unity3d binaries?

I'm trying to use the kerbal space program (ksp) binaries to read in one of the ksp part models, I've added the ksp binaries and UnityEngine.dll under references then I'm doing the following: Planet ...
6
votes
1answer
285 views

iphonesimulator (SDK not found) error in xcode

I've been trying to resolve this issue for a while now. The reason I am trying to build for a simulator is to get screenshot on a retina 4 inch display which is now required in the appstore. I am ...
5
votes
5answers
2k views

Does Unity3d Indie version come with full source code?

I am thinking of using Unity3d indie. Does anyone know if Unity Indie version comes with full source code? Also, what are the licenses like (how flexible compare to Torque engine.)
5
votes
4answers
518 views

C# Generic Functions

Seeking some help on C# generics. I am working in Unity3D and am rolling a BiLerp function as Unity3D doesn't have one. public Vector3 BiLerp(Vector2 _uv, Vector3 _00, Vector3 _01, Vector3 _10, ...
5
votes
3answers
2k views

Debugging with unity

At the current moment, what I'm doing is that I'm opening Unity, double click on one of those scripts I've written, then MonoDevelop gets opened, now I have to close unity and in MonoDevelop I do Run ...
5
votes
4answers
9k views

How to prevent colliders from passing through each other?

I am having trouble keeping game objects inside of a contained space. When they reach the edge, there is some momentary push back but then they will go right through the wall. I am using a Box ...
5
votes
1answer
77 views

3D Math - Only keeping positions within a certain amount of yards

I'm trying to determine from a large set of positions how to narrow my list down significantly. Right now I have around 3000 positions (x, y, z) and I want to basically keep the positions that are ...
5
votes
3answers
3k views

Problem with collision detection of a fast moving ball with a racket controlled by mouse

In unity, i have a racket which is supposed to hit a ball, and the racket is controlled directly by the mouse, i.e the bat is being moved by the mouse using mouse axes and the using ...
5
votes
1answer
105 views

Get string representing the expression used as function argument in C#

I'm developing for Unity3D using C#, and decided it would be useful to have an assert function. (In Unity3D, System.Diagnostics.Debug.Assert exists, but does nothing.) As a developer that works ...
5
votes
2answers
197 views

Basic Functions in Javascript

I just have a basic question. I'm trying to learn how to use functions with Javascript and I learned that when you create a function using something like function Example(text) { print(text); } ...
5
votes
1answer
1k views

IronPython in Unity3D

I am trying to use IronPython as an external scripting language for Unity3D. The necessary DLLs for IronPython's execution load just fine inside of Assets\Plugins. However, when I try to run the ...
5
votes
1answer
552 views

App Rejection by Apple due to use of watchdog timer for applications in unity3d iOs Game?

I got a rejection from apple due to the following issue. 2.2: Apps that exhibit bugs will be rejected We found that your app failed to launch on iPhone 4 and iPad 2 running iOS 5,on both Wi-Fi and ...
5
votes
2answers
310 views

Unity3d - ios duplicate method found with fmod

I am using an fmod plugin for Unity3D. Compiling to Windows and OSX is fine because I can dynamically load the DLL/dylib. The problem comes when I compile for iOS. I use [DllImport("__Internal")] ...
5
votes
2answers
2k views

Integrating Unity with Eclipse - Communication?

I made it by following steps: Integrating Unity and Eclipse. Can I call functions (that I created with JavaScript or C# in Unity) with the Android SDK or NDK and the other way around? There are an ...
5
votes
1answer
1k views

I'm confused about some Reflection code, and looking for insight

I'm developing for the iPhone using C# and Mono's Full AOT technology. According to their Limitations page (link text), unlike traditional Mono/.NET, code on the iPhone is statically compiled ahead of ...

1 2 3 4 5 38