The tag has no usage guidance.

learn more… | top users | synonyms

1
vote
1answer
70 views

Why does Unity let you install iOS Build Support on Windows?

When installing Unity on a Windows machine, you are allowed to select "iOS Build Support" as one of the components to install. However, it is not possible to make an iOS build from Windows. Why is ...
0
votes
0answers
31 views

Unity - test iOS game locally. How to deal with licensing?

I am developing a unity game that targets iOS devices. I am at point now where I'd need to test it on my own devices (no UnityRemote no clouding). The whole thing is very confusing: apparently with ...
0
votes
0answers
51 views

Unity debug build runs better than release build

When running the debug build with the Profiler we're getting a good frame rate that bounces between 55 and 60. When we make a release build the frame rate randomly drops from down to 30 for a few ...
1
vote
1answer
457 views

iOS build size is too large in Unity

I have finally completed my game and ready to upload my game to the App store, but my build size is too large. I have checked log statement and it is roughly 13.3 mb but when i build my game and test ...
1
vote
0answers
69 views

Mirror problems after building game in unity

Hi I am facing a weird problem in unity when I build a particular scene. Here is the screenshot of how the mirror looks when I play the game from inside the unity editor: And here is how it looks ...
0
votes
1answer
540 views

Unity 3D error when compiling to WebGL: Destination directory not found

When I try to compile my Unity project to WebGL in Development mode on Windows 8.1 (and with the latest version of Unity), I receive the following errors (the first one is truncated because it's ...
5
votes
1answer
1k views

How to make installable .exe file for unity games

I just completed my game but after i built the game from unity to .exe it also has filename_data folder i know it has all the resources for the game. I tried iexpress and innosetup to make the install-...
4
votes
2answers
262 views

create ipa without RoboVM in a project libgdx

I am creating an application with libgdx , and I wish I could produce an IPA without using RoboVM , because since version 1.9 became a fee . I saw on the original documentation that you can do with ...
0
votes
0answers
70 views

Build size increased by 4MB by upgrading project to Unity 5.2.0f

My 2D project (that uses NGUI mainly) just bloated up by 4MB after upgrading it to Unity 5.2.0f from 5.1.3f. Any clues as to why? This kind of bloat is unacceptable for mobile users in areas with ...
0
votes
1answer
51 views

XNA - Autodeploy .exe of game upon succesfull commit to GIT

I know of ClickOnce which creates an .exe file so a user can play my XNA game. However, I have to manually go through a wizard in order to create this file. I would like for the new .exe to be ...
4
votes
2answers
1k views

Including files in an application using XNA

I'm making a game and I need to load some text files to create levels. After much frustration in trying to get them to work I placed the files in the debug folder of my project (I think this is a bad ...
5
votes
2answers
339 views

Advice creating build process for medium sized game project

I've been looking through the SCons build script for Doom3 and researching different approaches to build processes used by professional game developers/studios (C/C++) and I've come across a few ...