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
15 views

How can I send a string converted from list with memorystream over a network?

I am using Unity3d´s RPC system to send a msg from the server to client with a string parameter over the network. The problem is though, that the string gets empty when received. But on the Serverside ...
0
votes
1answer
43 views

what's the different between Socket.Connect and Socket.BeginConnect

I meet a very strange problem: when I use Socket.Connect() in unity3d webplayer, meeting "System.Security.SecurityException: Unable to connect, as no valid crossdomain policy was found", but It's ok ...
0
votes
0answers
32 views

Facebook image upload works but facebook video upload fails

I'm struggling to do a facebook video upload. The error I get when implementing my code after getting a token is 400 bad request. I am able to login and get a token. I set the facebook app with ...
0
votes
1answer
40 views

visual lag of the moving picture in Unity3D. How to make it smoother?

I make a game in Unity3D (+2D ToolKit) for iOS. It is 2d runner/platformer with side view. So on screen is moving background and obstacles. And we control up/down the main character to overcome ...
1
vote
1answer
108 views

How to make an enemy AI that would follow the player without rotating or looking at the player?

I am new to programming and I am making a 2D side-scrolling beat em' up for my project. I got an AI working for my enemies but my enemy objects are modelled to be flat so only one side is meant to be ...
0
votes
2answers
50 views

xCode will not parse project from Unity

I am working on a different iOS project in Unity and I have built it by exporting to Xcode (like I always have). Whenever I try to open the "Unity-iPhone.xcodeproj" in Xcode, it gives me the ...
0
votes
4answers
64 views

Change by value reference in c#

I have RangeClass and a MyClass and it has RangeClass property. public class RangeClass{ public int min; public int max; } and public class MyClass{ RangeClass range; public ...
0
votes
1answer
50 views

Unity3d color does not get applied on gameobject

I want to apply a texture or a color on a game object. I wrote this code so far but the color part is not working. The texture is applied, so at least something is right. Depends of the type of the ...
0
votes
2answers
58 views

Base64 decoding of a image gives a red question mark

I am encoding and decoding facebook thumbnail image data using base64 strings in unity3d. When the user does not have a profile picture, the resulting image is a red question mark. Is there any way to ...
0
votes
0answers
30 views

Scene is being loaded with delay in facebook game which is made in unity

I have made a game in unity3d and I want to upload it as a facebook game (app) on facebook. So I have followed the steps ...
0
votes
1answer
26 views

Some GameObjects can't touch

I am developing game for iPhone and Android and i have different GameObjects and GUITexture and i have write code for touch event for all objects and everything was working perfectly. But after change ...
0
votes
0answers
53 views

Facebook integration with Unity for android

Can anyone tell me how to integrate facebook in unity for android?Is there any free plugins?or Is there any way to integrate facebook after porting it to android? Please help.I am new with ...
2
votes
1answer
51 views

Further away objects overlapping close objects in Unity3D

I have 3 different planes: foreground, middle ground, and background. Fore some reason the further back planes are periodically rendering over top of my foreground planes. Here in the scene view you ...
0
votes
0answers
48 views

Unity C# Load textrue with www

I am making a game that load a level by reading XML. That part works fine but I can't load Textrues. He doesnt give a error or something like that. There is just no textrue, it's a null object. this ...
0
votes
1answer
49 views

I can post text to Twitter in Unity3D but I need to be able to post a photo

So I got this free plugin from the Unity asset store called Let's Tweet in Unity and it works perfectly for posting text but I cannot figure out how to use ...
0
votes
0answers
21 views

Why can't my hosted IronPython import the 'os' module

I'm building a script interpreter that runs IronPython inside of Unity3d. In general it works pretty well - but there's one very mysterious issue that I can't work around. Some of the standard library ...
1
vote
1answer
45 views

Undefined symbols for architecture armv7 when using iAds plugins for Unity in xcode

I have added the iAds plugin from Prime31 to my Unity project. When I build the project and open it in xCode, everything seems fine. When I try to build the project using XCode, I get the following ...
0
votes
1answer
100 views

2D Water top surface profile

I am trying to create the effect of the water surface thickness with a vertex-fragment shader. I am in a 3D game environment but It's a scroll view so a "2D" view. Here is a good tutorial of creating ...
1
vote
1answer
29 views

iOS: Communication between Game module (within an app) and rest of the app

My team is working on an iPad app that includes a gaming module (could be 2D or 3D). We intend to develop the gaming module using one of the Game Engines and are currently evaluating Unity3D ...
1
vote
0answers
42 views

my unity public variable is not being assigned a sound clip

public class PlayerCollision : MonoBehaviour { public bool doorIsOpen = false; float doorTimer = 0.0f; public float doorOpenTime = 3.0f; public AudioClip doorOpenSound; public ...
1
vote
2answers
30 views

movement on object click

On pressing down the object I want it to move continuously.I am a beginner in Unity 3D. Please help. function OnMouseDown() { Debug.Log("its a hit"); function Update() { ...
1
vote
0answers
26 views

Why the UIView get transparent at the end of an animnation in Unity?

I add an UIView to the window. And act an animnation from itself size to full screen . But at the end of the screen , it has some transparent splash appear. I can see the interface of Unity , not my ...
0
votes
2answers
68 views

How can I address a script I don't know the type of?

My game uses a variety of different game modes, and I'd like to spawn a different GameController script at the beginning of the scene depending on the game mode selected. Then other items (e.g., ...
2
votes
1answer
82 views

Displaying Google Maps in Unity on mobile devices

Is there a way to display Google Maps (even other maps should be ok) in Unity 3D but on mobile devices (both Android and iOS)? Even paid plugins are ok.
0
votes
0answers
72 views

unity3D mono.exe stopped working and I can't compile my project

I'm currently working on a project and I came across this error. I was just basically added some C# scripts. I've tested it and it works fine. When I re-opened the unity again. It shows a window ...
0
votes
2answers
46 views

Using helper functions inside trigger functions

I'm trying to use helper function in order to make the function pause for few seconds but it doesn't execute the wait function. That's the code I've been using: Code: public class Triggers : ...
0
votes
1answer
65 views

bool variable don't change in unity 3d

I'm trying to make a bomberman like game in unity and learning c# in the same time. I try to change the bool value of targetDestroyed1 var in my code but it seems that there is a problem.. The ...
0
votes
1answer
38 views

Cg: omit depth write

I am outputting depth in Cg in a branch, like so: ZWrite On .. void frag(v2f IN, out color : COLOR, out depth : DEPTH) { if (statement) { color = float4(1); } else { color = float4(0); depth ...
0
votes
0answers
27 views

How to use Directional Light on multiple axis equally Unity3d

I have a path that is created on Zaxis (+ve &-ve) & Xaxis (+ve & -ve) I am using one directional light to lighten the whole path .But I see that the Path on Negative Xaxis is not lighten ...
1
vote
2answers
46 views

Having problems detecting both LMB and RMB at the same time. Is my mouse broken?

I am currently developing a game in Unity3D. One of the features in the game involves having both LMB and RMB pressed at the same time. My problem is that I tested my code with my own mouse a ...
2
votes
1answer
89 views

Unity3d animation events not firing consistently

I have an animation that has an event in the middle key frame. The animation moves a game object on the x and y across the screen in a semi circle. When the event fires I call animation.Stop(). ...
0
votes
1answer
47 views

How to clone destroyed objects in unity3D?

I made a wall that get destroyed when the character touches it and then he can keep walking. I want to create the same wall after few seconds or after the character pass it , anyone knows how do it ? ...
0
votes
1answer
29 views

Placing 2d on a grid in Unity3d

I built a small MapEditor for my game in XNA. Now I want to build it in Unity3d, except I don't really understand how this works in Unity3d. So basically what I want is to create a 2d grid, where I ...
0
votes
0answers
48 views

How to use SIMD inside MonoDevelop (Unity)?

Currently I'm creating a game in Unity, the programming is done in C#. Since the code is making heavy use of vectors and matrices, I would like to use Mono's SIMD-support. The only problem is that the ...
0
votes
0answers
55 views

Converting statements into expressions

I'm looking for ideas on how to convert code into expressions in C# for Unity. We have this basic list of statements: Simple statements: assignment: A:= A + 5 call: CLEARSCREEN() return: return 5; ...
0
votes
1answer
57 views

Unity Pro trial watermark still shows after Upgrading to Pro

I have been using the Unity 4 Pro trial version for a couple weeks now. I decided to upgrade to the actual Pro version so I could publish games. The issue I am having is that even though I have ...
0
votes
0answers
39 views

unity: transaparent android activity showing black background instead?

I am developing a unity plugin that allows showing a new activity on top of the existing unity activity. The new activity is a standard android activity (does not derive from unity activity, etc). The ...
0
votes
2answers
48 views

unity jumping collisions - how enemy is damaged

I am making a platformer in Unity using JavaScript. I have a Player parent object with a character controller and various child objects. I have a similar enemy with a box collider. I'm struggling ...
2
votes
0answers
75 views

Can not upload updated APK to Google for game made with Unity

We have recently purchased a game from another company and have done some updates to it with all the information converted over to our side. The game is made and updated using Unity and is for the ...
0
votes
0answers
49 views

Unity3D: Network.Instantiated objects appearing on server but not client

So to simplify the scenario let's just say I have two scenes in my Unity project: the menu where connection happens and the level to walk around in. The server user (SU) will setup a game and load the ...
1
vote
0answers
33 views

Trigger/Collision not triggering properly

I have been over this a 100 times in the past. Collisions and triggers in unity. This page: http://docs.unity3d.com/Documentation/Components/class-BoxCollider.html has a collision chart which shows ...
1
vote
1answer
75 views

Unity3D rendering issue on android devices

As shown in above screen shots. on some android devices textures are rendering as black. But when I try to capture screen from the device it saved it perfectly alright. Can anyone please suggest me ...
0
votes
1answer
54 views

How to pass touch events to android from unity?

I'm developing a plugin for Android that using Android jar file to show an Android view above the Unity view. That works fine but the problem is that Unity doesn't pass the touch events to my view. ...
0
votes
0answers
21 views

Google Play Check Billing

I was asked by management about google apps billing. Currently we created android games using Unity3d and django backend to store and calculate some data. They communicate using REST, WWW class, and ...
0
votes
0answers
68 views

Cannot create APK with Unity Pro license

I already have the Unity Pro license and I am trying to create an APK but I get the following error: Error building Player: SystemException: 'System.Net.Sockets' are supported only with Unity ...
0
votes
1answer
42 views

unity web player download prompt

My website has a web player in it called Unity Web Player. I am working on a page that checks to see if the user has the unity web player installed. If the user already has the web player the user ...
0
votes
1answer
76 views

Unity 4 Web Player offline installation - is it possible?

I would like to know if there is any way available to install Unity web player to a PC that is not connected to the internet. The official installer installs an ActiveX component, and a NSAPI DLL ...
0
votes
1answer
38 views

How to Flip a Gameobject around Y axis Unity

I am trying this to flip a gameobject around Y axis in Unity newCellModel2.transform.rotation=Quaternion.AngleAxis(180, Vector3.up); Can anybody tell me if that is wrong or right because I am not ...
0
votes
0answers
60 views

Creating UnityPlayer in Engine object

I'm trying to set unity player as wallpaper engine Code: private class MyWallpaperEngine extends Engine{ UnityPlayer mUnityPlayer; @Override public void onCreate(SurfaceHolder ...
0
votes
1answer
41 views

Web plugin like uWebKit for Android?

uWebKit plugin doesn't support Android. Anyone knows a similar plugin that supports Android? (in addition to iOS and standalone)

1 2 3 4 5 38