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)

0
votes
0answers
27 views

What is good multiplay server solution for unity3d and facebook webgame? [closed]

I am currently using external delphi server .dll input in unity project, problem is it only suppot standalone build. Now I want to make web-player build. So maybe I should use another server ...
-4
votes
3answers
68 views

Getting error Field `BaseStats.baseStats.hp' must be fully assigned before control leaves the constructor

I tried to figure this out but have not been able to so here it is. Cannot implicitly convert type int to BaseStats.Stat using UnityEngine; using System.Collections; public class BaseStats : ...
2
votes
1answer
52 views

How to create xml text and display the text in scene by using script?

I needed to create one xml text file and display in this text in scene by (using box) using script? I have created one xml text file i.e located in c Drive. Please see my below code and help to me by ...
0
votes
1answer
70 views

can't use image filters (npot-RT are not supported or RT are disabled completely) when applying Glow effect

I am trying to apply GlowEffect for basic purpose. But get following message and glow effect is not applied. can't use image filters (npot-RT are not supported or RT are disabled completely)
0
votes
1answer
66 views

How to load assets dynamicaly in Unity3D?

What is the proper way to load external assets in Unity3D Webplayer? My example consists of an empty scene and a button. I have to load an external asset into the scene when user clicks a button. ...
1
vote
2answers
107 views

how to connect to sqlite build in database?

In Unity3d there are 2 ways to include files in build: 1. Expose a reference to an asset by declaring a member-variable, and then assign it in the inspector 2. Put assets in the "Resources" folders, ...
3
votes
1answer
49 views

How to compile a DLL without using Visual Studio?

That sounds a stupid question, but I'm really curious about how to compile a DLL without using Visual Studio since I'm using Unity3D OS X for now. Is there some way like "tool chain" can do the trick? ...
0
votes
1answer
33 views

Can't cast a ray from the camera down to objects based on mouse position

I have a camera looking down on my game world. I want to allow the user to click on objects. The following script is attached to the MainCamera. void Update () { if (holdingSomething) { ...
0
votes
1answer
60 views

.NET XML Serialization with a static class in Unity: InvalidOperationException

I'm using Javascript with Unity to save data as XML. I'm importing parts of the .NET library to give me the XML serialization functionality I'm trying to take my static Global class and turn it into ...
-1
votes
2answers
112 views

Unity: Random Block Terrain [closed]

So I'm working on a Minecraft style game, and so far I have the creation/digging of blocks. However, this is based around a small square of blocks that I manually placed. Does anyone know how I could ...
0
votes
3answers
79 views

C# Unity trying to figure out how to use Coroutine

I have the following code... StartCoroutine(GetSuggestions()); IEnumerator GetSuggestions() { longExecutionFunction(); // this takes a long time yield return null; } How can I use a ...
1
vote
1answer
54 views

How to play sounds loaded on the fly

I trying to make a tool for the sound designer of my group that would allow him to hear his sound file played in Unity. Check if it's loadable Check if the volume is right Check if loops properly ...
1
vote
2answers
124 views

Unity: Climb Ladder

I've been working in Unity on a first person game, and came across a feature I want to add: climbing ladders. However, I have been unsuccessful in coding this so far(btw I'm using javascript). Below ...
0
votes
2answers
73 views

Fighter Game in Unity3D - Fighter hit opponent [JavaScript]

I'm making a fighter game in Unity. When I punch I need to find a way for Unity to detect that if I'm hitting the opponent. The problem is that I don't seem to find a way to do so. Isn't there a way ...
0
votes
0answers
37 views

Unity Browser Communication - Getting loaded state

is there any way to get the state if an unity webplayer-object is loaded? Currently I'm creating an gameObject that sends and externalCall to my Browser, but this is really just a workaround, there ...
0
votes
1answer
63 views

Unity3D TypeLoadException

I'm trying to connect to a MySQL database through Unity. I've added a reference to System.Data in visual studio but unity is throwing the following error: TypeLoadException: Could not load type ...
0
votes
1answer
83 views

Unity/iOS - MoPub installation - Xcode compilation errors

I've done everything EXACTLY as it is written in "Build instructions" here: https://github.com/mopub/mopub-unity-ios-plugin Import UnityPlugin's MoPubiOS.unitypackage into your Unity iOS Project ...
1
vote
1answer
190 views

How to use a C++ dll in Unity3D?

I am aware of this similar question, but it does not respond to my problem. I have written two .dlls using Visual Studio 2010. One is in C++, and communicates with an SDK that was written in C++. The ...
7
votes
2answers
118 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 ...
2
votes
2answers
219 views

Speech Recognition on Unity Game Engine

I've succesfully achieved the goal of developing an app on android that use speech recognition from Google API. But the fact is that I must use a real Game Engine because my app is going to be ...
-1
votes
3answers
147 views

generation of random 10 in unity c#? [duplicate]

Audio clips come null. So how to fill array by using elements of sounds? Please help me the below code: using UnityEngine; using System.Collections; public class Audio_RanGen: MonoBehaviour { ...
3
votes
0answers
112 views

Unity3d Sandboxed Game Center on MacOSX

For uncertain reasons the game is not recognized by game center. If the application GameCenter user is logged in, when you try to log in to the game GameCenter on start, it displays This Game is ...
0
votes
1answer
113 views

unity disable retina for iphone 4

We developing an app for iOS with Unity (Basic version). On iPhone 4 we have low fps. We want to use non-retina 320*480 screen size on iPhone 4 (and render buffer 320*480). We think that will increase ...
1
vote
1answer
122 views

Problems with OnMouseDown() event Unity

I am new to Unity and I am doing some tutorials, but one drove me crazy. I have a rotating cube with a box collider on it. All events work except OnMouseDown(). I don't know what is the problem... ...
0
votes
1answer
69 views

Unity and Eclipse: dynamically draw object

I'm implementing an Android application that draws a 3D object on screen (over camera view). The objects are in FBX format, and since it's been several years since the last time I used openGL I ...
0
votes
1answer
135 views

iOS FPS low frame rate when character moves, profiler shows Physics.Simulate takes cpu time

We develop FPS game for iOS. Player character is a First Person Controls from Standard Assets (Mobile). It has standard Character Controller attached. We have 7 enemies on our scene Each enemy has a ...
0
votes
2answers
142 views

C# call other class variable but return null (Unity3D)

I'm using Unity Augmented Reality. Why does my application return a null value if I call a public value of an other class? These are my classes: using UnityEngine; using System.Collections; public ...
0
votes
0answers
275 views

C++ vs C# For Gamedev [closed]

I tried searching but couldn't find what I'm looking for. So, I'm pretty good at C++ and some skills transferred to C#, so learning one or the other isn't a challenge. It seemed like Visual Studio (my ...
0
votes
1answer
65 views

Unity approach an object in spiral motion

In Unity I can handle circular motion around an object with a simple transform.RotateAround(GameObject.Find("CubeTest").transform.position, Vector3.up, 20000*Time.deltaTime); However, I want the ...
0
votes
2answers
83 views

Passing Camera.MAIN in Unity3D to android java method

i'm working on integrating image recognition app using Moodstocks SDK , to start the scanner in moodstocks i must use a surfaceview (Camera) , all works fine when i do it in eclipse , but i want to ...
0
votes
3answers
58 views

influence of the wheels on the vehicle movement

I'm new in Unity. I want to do that wheels (cylinders) in this car will turn around if I press "up" button on my keyboard. This is the code I've written: var forwardSpeed: float = 3; function Start ...
0
votes
1answer
97 views

How to call C# method from AS3 script?

I have two swf files. First (let's call it A) one is a kind of host application with login UI, etc. The second one (B) is generated by Unity. So, A after some actions from user load and starts B. At ...
3
votes
1answer
168 views

Receive the latest UDP packet in C#

I'm using Unity to visualize a simulation where the data from the simulation is being sent to it via UDP packets from Simulink. The problem I'm having stems from the rate at which Simulink sends out ...
0
votes
0answers
242 views

Awesomium In Unity Plugin - Webview Click event to handle via Phone Native Browser

I have successfully setup the Awesomium in unity3d. Its really nice plugin. Webview - URL used to show an image and on clicking of the image load the page in separate window. Now I can able to see the ...
0
votes
0answers
75 views

ControllerColliderHit makes position change in unity 3d

I attached a script to a character controller. When my character controller hit on any collider, transform positon of character controller changes. void ...
0
votes
1answer
105 views

Passing IOS native objects back to unity3d

I implemented IOS plugin with couple of simple methods to interract my unity application with native static library. The problem, I faced, is passing back native UI elements(objects) to unity. F.e ...
-1
votes
2answers
86 views

object movement as wave in Unity 3d

I created a object in unity GameObject monsterclone = (GameObject)Instantiate(monsterPrefab, floorPosition, Quaternion.identity); This object should move in a wave style from a limit1 to ...
0
votes
1answer
76 views

Integration Awesomomium in Unity - RenderBuffer is an ambiguous reference between UnityEngine.RenderBuffer and AwesomiumMono.RenderBuffer

I have to integrate Awesomium in Unity 3d. I have went over the steps defined in http://labs.awesomium.com/unity3d-integration-tutorial-part-1/ But when i have to drag the webTexture.cs over the ...
0
votes
1answer
74 views

UNITY Lose one life when player hits the water

I want to change the number of lives every time the player hits the water. I wrote this code so far: public var dieSound:AudioClip; static var lives = 3; function Start () { } function Update () { ...
1
vote
1answer
326 views

Loading a PNG as a Texture at Runtime in Unity3d

I'm using a series of PNGs as sprites to create animations on a plane for an augmented reality application in Unity. The PNGs are loaded as textures and the textures are applied to a plane to create ...
0
votes
0answers
42 views

create simple brush tool using Blit, RenderTexture and a shader

I am trying to create a trail of a texture (i.e. a brush) on a "canvas" (i.e. a plane with a material+shader attached). I am doing this by creating a RenderTexture that will act as my "buffer" ...
0
votes
1answer
372 views

Useful examples of Kinect in combination with Unity?

My colleague and I are working on a project where we need to use Kinect to control an application made in Unity. We have familiarized ourselves with Kinect and Unity, but we can't find any examples or ...
0
votes
1answer
45 views

Switch between opened files in MonoDevelop Unity

How can I switch between opened files in MonoDevelop opened from Unity. ALT-TAB doesn't work. Any ideas? Thanks.
2
votes
1answer
58 views

How can one compile libgit2 into an OSX Application Bundle?

The OSX answer to Window's .DLL files is a 'bundle', or so I've been reading, and I can't quite figure out how to get started building libgit2 into something useable. I normally work on Windows, and ...
1
vote
0answers
65 views

Suppress iOS Console Output “Unloading xxx unused Assets…”

Is there any way to suppress console output in iPhone player when a new scene is loaded using Application.LoadLevelAdditiveAsync or similar methods? Unloading 7 Unused Serialized files (Serialized ...
0
votes
1answer
287 views

Unity3D visible seams on borders when tiling texture

For my game I have written a shader that allows my texture to tile nicely over multiple objects. I do that by choosing the uv not based on the relative position of the vertex, but on the absolute ...
0
votes
1answer
107 views

Boss Battle State Machine in Unity

I'm trying to build a boss enemy using a simple state machine for his different behaviours. I'm trying to build an Attacking and Waiting state as it is, but I'm running into some issues. How can I ...
0
votes
1answer
68 views

Is there a way to add water to a Unity3d project that is combatible with mobile platforms

I am working on a Unity3D project, I have Unity Pro which comes with water4. I realize I will not be able to use this if I'm trying to make a game that works on mobile devices. Does anyone have an ...
-1
votes
2answers
147 views

Are Skyrim models open source? [closed]

I plan to make a new game using Unity3d. I recently learned that Skyrim models could be ripped using some software along with the animation. So, I was just wondering whether I can use the ripped ...
6
votes
1answer
151 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 ...

1 3 4 5 6 7 35